mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-23 13:38:24 +00:00
e60e0071c4
Feature flags are now asked to the user interactively, as part of the configuration step. This makes defining feature flags much more simple.
5 lines
214 B
Bash
5 lines
214 B
Bash
ACTIVATE_HTTPS ?= {{ 1 if ACTIVATE_HTTPS else 0 }}
|
|
ACTIVATE_XQUEUE ?= {{ 1 if ACTIVATE_XQUEUE else 0 }}
|
|
ACTIVATE_NOTES ?= {{ 1 if ACTIVATE_NOTES else 0 }}
|
|
ACTIVATE_PORTAINER ?= {{ 1 if ACTIVATE_PORTAINER else 0 }}
|