Skip to content

Commit

Permalink
Fix port of all the PAMIs
Browse files Browse the repository at this point in the history
  • Loading branch information
gdepuille committed May 2, 2024
1 parent 6835d2d commit 483f01d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/services/RobotService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class RobotService {
}
/*if (!hasOdin) {
new Robot({
host : 'odin:8080',
host : 'odin:8081',
name : 'Odin',
simulateur: false,
}).save();
Expand All @@ -90,7 +90,7 @@ export class RobotService {
}*/
if (!hasPamiTriangle) {
new Robot({
host : 'pami-triangle:8080',
host : 'pami-triangle:8082',
name : 'Pami △',
simulateur: false,
}).save();
Expand All @@ -104,7 +104,7 @@ export class RobotService {
}
if (!hasPamiCarre) {
new Robot({
host : 'pami-carre:8080',
host : 'pami-carre:8083',
name : 'Pami ▢',
simulateur: false,
}).save();
Expand All @@ -118,7 +118,7 @@ export class RobotService {
}
if (!hasPamiRond) {
new Robot({
host : 'pami-rond:8080',
host : 'pami-rond:8084',
name : 'Pami ○',
simulateur: false,
}).save();
Expand Down

0 comments on commit 483f01d

Please sign in to comment.