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

config.py.example

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