Add base HTML template & config
This commit is contained in:
0
config/__init__.py
Normal file
0
config/__init__.py
Normal file
13
config/base.py
Normal file
13
config/base.py
Normal 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
5
config/local.py
Normal file
@ -0,0 +1,5 @@
|
||||
SECRET_KEY = 'replace-with-truly-random-string-for-production'
|
||||
|
||||
SERVER_NAME = 'localhost:5001'
|
||||
|
||||
DEBUG = True
|
Reference in New Issue
Block a user