Skip to content
Snippets Groups Projects
Commit 725931d3 authored by Andreas Valder's avatar Andreas Valder Committed by Andreas Valder
Browse files

Merge branch 'master' of git.fsmpi.rwth-aachen.de:videoagwebsite/videoagwebsite

parents 0b063bd5 fa261b4b
No related branches found
No related tags found
No related merge requests found
# Config for testing purposes only, don't run this in production! # Defaults for development ,do not use in production!
DEBUG = True DEBUG = True
VIDEOPREFIX = 'https://videoag.fsmpi.rwth-aachen.de'
#SECRET_KEY = 'something random'
DB_SCHEMA = 'db_schema.sql'
DB_DATA = 'db_example.sql'
#DB_ENGINE = 'mysql'
#MYSQL_HOST = 'localhost' #MYSQL_HOST = 'localhost'
#MYSQL_USER = 'videoag' #MYSQL_USER = 'videoag'
#MYSQL_PASSWD = 'somuchsecret' #MYSQL_PASSWD = 'somuchsecret'
#MYSQL_DB = 'videos' #MYSQL_DB = 'videos'
#DB_ENGINE = 'mysql'
SQLITE_DB = 'db.sqlite'
DB_ENGINE = 'sqlite' DB_ENGINE = 'sqlite'
SQLITE_DB = 'db.sqlite'
SQLITE_INIT_SCHEMA = True SQLITE_INIT_SCHEMA = True
SQLITE_INIT_DATA = True SQLITE_INIT_DATA = True
#LDAP_HOST = 'ldaps://rumo.fsmpi.rwth-aachen.de'
...@@ -4,6 +4,7 @@ from functools import wraps ...@@ -4,6 +4,7 @@ from functools import wraps
from datetime import date, timedelta, datetime, time, MINYEAR from datetime import date, timedelta, datetime, time, MINYEAR
import threading import threading
import os import os
import sys
import hashlib import hashlib
import random import random
...@@ -23,20 +24,15 @@ timer.daemon = True ...@@ -23,20 +24,15 @@ timer.daemon = True
timer.start() timer.start()
config = app.config config = app.config
config['DB_SCHEMA'] = 'db_schema.sql' config.from_pyfile('config.py.example', silent=True)
config['DB_DATA'] = 'db_example.sql' if not sys.argv[0].endswith('run.py'):
config['DB_ENGINE'] = 'sqlite'
config['SQLITE_DB'] = 'db.sqlite'
config['SQLITE_INIT_SCHEMA'] = True
config['SQLITE_INIT_DATA'] = False config['SQLITE_INIT_DATA'] = False
config['DEBUG'] = False config['DEBUG'] = False
config['VIDEOPREFIX'] = 'https://videoag.fsmpi.rwth-aachen.de'
if __name__ == '__main__':
config['SQLITE_INIT_DATA'] = True
config['DEBUG'] = True
config.from_pyfile('config.py', silent=True) config.from_pyfile('config.py', silent=True)
if config['DEBUG']: if config['DEBUG']:
app.jinja_env.auto_reload = True app.jinja_env.auto_reload = True
if not config.get('SECRET_KEY', None):
config['SECRET_KEY'] = os.urandom(24)
from db import query, searchquery, ldapauth, ldapget, convert_timestamp from db import query, searchquery, ldapauth, ldapget, convert_timestamp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment