chore: Add make config command to create new dotenv files

This commit is contained in:
Vikash Kothary 2022-03-10 17:45:05 +00:00
parent 16fbf6e27f
commit 50f002c53a

View File

@ -31,6 +31,11 @@ run:
@if [[ -f "scripts/${*}.sh" ]]; then \
${BASH} "scripts/${*}.sh"; fi
.PHONY: config #: Create new config file.
config: config/.env.${ENV}
config/.env.%:
@cp -n config/.env.example config/.env.${ENV}
.PHONY: init #: Download Python dependencies.
init:
@${POETRY} install