Add basic Flask/Jinja setup and basic YAML config
This commit is contained in:
parent
c2d8d5af22
commit
657ee72ecb
4 changed files with 64 additions and 0 deletions
9
config.yml
Normal file
9
config.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
# Username to make admin API requests
|
||||
admin_username: 'admin'
|
||||
|
||||
# Plaintext password to make admin API requests
|
||||
# Safe to remove if admin_hashed_password is set
|
||||
#admin_password: 'password'
|
||||
|
||||
# Hashed password (bcrypt) to make admin API requests - Preferred over plaintext, use securepass.sh to generate
|
||||
admin_hashed_password: 'test'
|
Reference in a new issue