Compare commits

..

No commits in common. "a5b680d948a351dbbef7d2e5779d129023160cf7" and "9808c2509cad96f97eb0bc303ebb8d0bae374d4e" have entirely different histories.

5 changed files with 6 additions and 40 deletions

View file

@ -10,16 +10,5 @@ services:
container_name: backend-prod container_name: backend-prod
environment: environment:
DEBUG: "no" DEBUG: "no"
PORT: 5050 PORT: 5000
HOST: "0.0.0.0" HOST: "0.0.0.0"
behametrics-server:
image: registry.gitlab.com/behametrics/server:latest
container_name: "behametrics-server"
ports:
- 5000:5000
environment:
- MONGO_URI=mongodb://mongodb:27017/behametrics
mongodb:
image: mongo:4.0.1
container_name: "behametrics-mongo"
command: mongod --smallfiles

View file

@ -21,20 +21,9 @@ services:
tty: true tty: true
volumes: volumes:
- ./backend/src:/app/ - ./backend/src:/app/
ports:
- 5050:5050
environment:
DEBUG: "yes"
PORT: 5050
HOST: "0.0.0.0"
behametrics-server:
image: registry.gitlab.com/behametrics/server:latest
container_name: "behametrics-server"
ports: ports:
- 5000:5000 - 5000:5000
environment: environment:
- MONGO_URI=mongodb://mongodb:27017/behametrics DEBUG: "yes"
mongodb: PORT: 5000
image: mongo:4.0.1 HOST: "0.0.0.0"
container_name: "behametrics-mongo"
command: mongod --smallfiles

View file

@ -42,5 +42,5 @@
"last 1 safari version" "last 1 safari version"
] ]
}, },
"proxy": "http://localhost:5050" "proxy": "http://localhost:5000"
} }

View file

@ -21,7 +21,6 @@ export default function BehaviorNormal() {
let logger = new Logger({ let logger = new Logger({
//inputs: ["cursor", "wheel", "keyboard", "touch"], //inputs: ["cursor", "wheel", "keyboard", "touch"],
inputs: ["keyboard"], inputs: ["keyboard"],
apiUrl: "http://localhost:5000",
logToConsole: true, logToConsole: true,
}); });

View file

@ -14,16 +14,5 @@ services:
dockerfile: Dockerfile.prod dockerfile: Dockerfile.prod
environment: environment:
DEBUG: "no" DEBUG: "no"
PORT: 5050 PORT: 5000
HOST: "0.0.0.0" HOST: "0.0.0.0"
behametrics-server:
image: registry.gitlab.com/behametrics/server:latest
container_name: "behametrics-server"
ports:
- 5000:5000
environment:
- MONGO_URI=mongodb://mongodb:27017/behametrics
mongodb:
image: mongo:4.0.1
container_name: "behametrics-mongo"
command: mongod --smallfiles