This commit is contained in:
Lucas F. 2024-03-04 16:01:29 -03:00
parent 447609f346
commit 5f45bb8957
26 changed files with 948 additions and 1 deletions

20
Makefile Normal file
View 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)