docker-compose variables and setup

This commit is contained in:
Ionut Filip
2018-10-16 12:34:55 +03:00
parent 11a8e49f05
commit 0d164486b4
9 changed files with 27 additions and 13 deletions

View File

@@ -32,9 +32,11 @@ def secret(length=16):
def build_app(path):
#Hardcoded master as the only version for test purposes
versions = [
version for version in os.listdir(path)
if os.path.isdir(os.path.join(path, version))
# version for version in os.listdir(path)
# if os.path.isdir(os.path.join(path, version))
"master"
]
app.jinja_env.trim_blocks = True