Skip to content
Snippets Groups Projects
Select Git revision
  • 83d411d43ec3c66ca7f70f88d8ad4f2ebe0b7f1f
  • master default protected
2 results

timetable.py

Blame
  • Forked from Video AG Infrastruktur / website
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    config.py.example 299 B
    # Config for testing purposes only, don't run this in production!
    DEBUG = True
    
    #MYSQL_HOST = 'localhost'
    #MYSQL_USER = 'videoag'
    #MYSQL_PASSWD = 'somuchsecret'
    #MYSQL_DB = 'videos'
    #DB_ENGINE = 'mysql'
    
    SQLITE_DB = 'db.sqlite'
    DB_ENGINE = 'sqlite'
    SQLITE_INIT_SCHEMA = True
    SQLITE_INIT_DATA = True