Add base HTML template & config

This commit is contained in:
c v t
2020-07-05 14:32:34 +02:00
parent 61a1ae62ab
commit fa9c8ef1a3
8 changed files with 119 additions and 36 deletions

0
config/__init__.py Normal file
View File

13
config/base.py Normal file
View File

@ -0,0 +1,13 @@
APPS_SPEC = {
"gitea": {
"url": "https://git.autonomic.zone/compose-stacks/gitea",
"secrets": [
"db_passwd",
"db_root_passwd",
"internal_token",
"jwt_secret",
"secret_key",
],
"configs": ["app_ini"],
}
}

5
config/local.py Normal file
View File

@ -0,0 +1,5 @@
SECRET_KEY = 'replace-with-truly-random-string-for-production'
SERVER_NAME = 'localhost:5001'
DEBUG = True