-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 870 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "bio2game",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "docker compose -p bio2game -f ./docker-compose.yml up -d",
"build": "docker compose -p bio2game -f ./docker-compose.yml build",
"down": "docker compose -p bio2game -f ./docker-compose.yml down",
"shell:frontend": "docker exec -it bio2game_frontend bash",
"shell:backend": "docker exec -it bio2game_backend bash",
"dev": "docker compose -p bio2game -f ./docker-compose.dev.yml up",
"dev:build": "docker compose -p bio2game -f ./docker-compose.dev.yml build",
"dev:down": "docker compose -p bio2game -f ./docker-compose.dev.yml down",
"db:migrate": "docker exec -it bio2game_backend node ace migration:run",
"db:migrate:undo": "docker exec -it bio2game_backend node ace migration:rollback"
},
"author": "DraftMan",
"license": "ISC"
}