initial
This commit is contained in:
parent
447609f346
commit
5f45bb8957
26 changed files with 948 additions and 1 deletions
20
Makefile
Normal file
20
Makefile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
.DEFAULT_GOAL = help
|
||||
SCRIPT = contrib/scripts/make_scripts.sh
|
||||
|
||||
## @ env
|
||||
.PHONY: env
|
||||
env: ## creates a .env file
|
||||
@./${SCRIPT} make_env_file
|
||||
|
||||
## @ task
|
||||
.PHONY: check run
|
||||
check: ## same as manage.py check
|
||||
@./manage.py check
|
||||
|
||||
run: ## same as manage.py run server
|
||||
@./manage.py runserver
|
||||
|
||||
## @ help
|
||||
.PHONY: help
|
||||
help: ## display all make commands
|
||||
@./${SCRIPT} help $(MAKEFILE_LIST)
|
||||
Loading…
Add table
Add a link
Reference in a new issue