Improve production setup

This commit is contained in:
Sascha Ißbrücker
2019-07-05 01:26:52 +02:00
parent c489f354c5
commit 70f9fb9818
15 changed files with 120 additions and 77 deletions

View File

@@ -0,0 +1,5 @@
# Use dev settings as default, use production if dev settings do not exist
try:
from .dev import *
except:
from .prod import *