We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3bb948 commit cc031d8Copy full SHA for cc031d8
.gitignore
@@ -13,3 +13,4 @@
13
# Please, add your custom content below!
14
15
.env
16
+__pycache__
makefiles/dev.mk
@@ -1,4 +1,4 @@
1
-.PHONY: run up down logs shell dev-clean
+.PHONY: dev-run dev-up dev-down dev-logs dev-shell dev-migrate dev-makemigrations dev-clean
2
3
dev-run:
4
docker-compose up --build
@@ -15,6 +15,12 @@ dev-logs:
dev-shell:
docker-compose run web sh
17
18
+dev-migrate:
19
+ docker-compose run web python manage.py migrate
20
+
21
+dev-makemigrations:
22
+ docker-compose run web python manage.py makemigrations
23
24
dev-clean:
25
docker-compose down -v --remove-orphans
26
docker system prune -f
0 commit comments