Skip to content
Snippets Groups Projects
Verified Commit 4a22b6df authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Set variables when empty, for real this time

Closes: aura#164
parent c672f92b
No related branches found
No related tags found
No related merge requests found
Pipeline #3061 passed
......@@ -4,8 +4,13 @@ POETRY_RUN_MANAGE = $(POETRY_RUN) ./manage.py
.DEFAULT_GOAL := run.prod
TANK_CALLBACK_BASE_URL ?= "${AURA_PROTO}://${AURA_HOST}/tank"
DASHBOARD_CALLBACK_BASE_URL ?= "${AURA_PROTO}://${AURA_HOST}"
ifndef TANK_CALLBACK_BASE_URL
override TANK_CALLBACK_BASE_URL = "${AURA_PROTO}://${AURA_HOST}/tank"
endif
ifndef DASHBOARD_CALLBACK_BASE_URL
override DASHBOARD_CALLBACK_BASE_URL = "${AURA_PROTO}://${AURA_HOST}"
endif
initialize: migrate loadfixtures
$(POETRY_RUN_MANAGE) collectstatic --clear --no-input
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment