path to document file is now configurable, flask secret is now also taken from configuration

This commit is contained in:
azivner
2017-08-15 22:57:44 -04:00
parent bd19dd3e55
commit c5660986d6
5 changed files with 32 additions and 15 deletions

5
generate-secret-key.py Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/python
import os
import base64
print(base64.b64encode(os.urandom(24)))