-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
50 lines (36 loc) · 664 Bytes
/
Makefile
File metadata and controls
50 lines (36 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
all:
make python_install
make npm_install
make build_static
make build_game_configs
make make_migrations
make migrate
start:
@docker-compose up
build:
@docker-compose build
shell:
@docker exec -ti game bash
migrate:
python manage.py migrate
make_migrations:
python manage.py makemigrations
watch:
make watch_css & make watch_js
watch_js:
@npm run watch:js
watch_css:
@npm run watch:css
build_static:
@npm run build:js
@npm run build:css
python_install:
@pip install -r requirements.txt
npm_install:
@npm ci
npm_lock:
@npm install
build_game_configs:
python manage.py shell < compile_configs.py
clean_data:
python manage.py flush