You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
466 B
19 lines
466 B
import os
|
|
|
|
PORT = 8889
|
|
|
|
settings = {
|
|
'cookie_secret': '__TODO:_GENERATE_YOUR_OWN_RANDOM_VALUE_HERE__',
|
|
'template_path': os.path.join(os.path.dirname(__file__), 'templates'),
|
|
'static_path': os.path.join(os.path.dirname(__file__), 'static'),
|
|
'login_url': '/login',
|
|
'xsrf_cookies': True,
|
|
'debug': True,
|
|
'autoreload': True,
|
|
'server_traceback': True,
|
|
}
|
|
|
|
|
|
DATABASE_DSN = 'dbname=archilance user=postgres password=postgres host=localhost'
|
|
|
|
|
|
|