Skip to content

Commit 7b2f920

Browse files
committed
flipped local flags
1 parent 3139bbd commit 7b2f920

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

game_server/src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ database.name=ims-db
1111
database.driver-class-name=org.postgresql.Driver
1212

1313

14-
running.local=true
14+
running.local=false

manager/src/managers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import json
33
from ..ENUMS import *
44

5-
RUNNING_LOCAL = True
5+
RUNNING_LOCAL = False
66

77
if RUNNING_LOCAL:
88
URL = "http://localhost:8080"

watch/app/src/main/java/com/imsproject/watch/model/MainModel.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ import java.util.concurrent.TimeUnit
2929
import java.util.stream.Collectors
3030

3131
// set these values to run the app locally
32-
private const val RUNNING_LOCAL : Boolean = true
33-
private const val RUNNING_ON_EMULATOR : Boolean = true
32+
private const val RUNNING_LOCAL : Boolean = false
33+
private const val RUNNING_ON_EMULATOR : Boolean = false
3434
private const val COMPUTER_NETWORK_IP = "192.168.0.105"
3535

3636
// ========== Constants ===========|

0 commit comments

Comments
 (0)