summaryrefslogtreecommitdiff
path: root/settings.py
blob: 0effb968c98cd60d5c6d7f7897591e54c783063e (plain)
1
2
3
4
5
6
7
8
9
10
11
import os

# set this to False on productive systems
DEBUG = True

# just generate a new secret key on each startup
SECRET_KEY = os.urandom(42)

# database
SQLALCHEMY_DATABASE_URI = "sqlite:///test.sqlite"
SQLALCHEMY_ECHO = True
8fceebabc69b&follow=1'>Fix some errorsRené 'Necoro' Neumann3-6/+6 2020-08-01Fix optional 'description' fieldRené 'Necoro' Neumann2-2/+2 2020-07-24Revert "Remove translation hack"René 'Necoro' Neumann1-1/+7 This reverts commit 6600ae0674bc685c4756a040b4db47e927f2e15e. 2020-07-24length validators for string fieldsRené 'Necoro' Neumann4-3/+9 2020-07-24Fix handling of prefilling the description field on adding a new expense.René 'Necoro' Neumann1-9/+6 2020-07-24Remove translation hackRené 'Necoro' Neumann1-7/+1 2020-07-24Improved debuggingRené 'Necoro' Neumann2-1/+2 2020-07-23RestructureRené 'Necoro' Neumann51-2/+3 2020-07-22Do not write bytecode for local debug runningRené 'Necoro' Neumann1-1/+4 2020-07-22Remove left over mention of jquery-uiRené 'Necoro' Neumann1-6/+1 2020-07-22Add simplejson as a dependencyRené 'Necoro' Neumann1-0/+1 2020-07-22Settings splittingRené 'Necoro' Neumann2-5/+3 2020-07-22Add flipflopRené 'Necoro' Neumann1-0/+1