mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-02-09 12:48:34 +00:00
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 }}
|