Skip to content
Snippets Groups Projects
Select Git revision
  • 20b38de0c8597c587eea64c7fbf89bfbdb2f5877
  • master default protected
  • intros
  • live_sources
  • bootstrap4
  • modules
6 results

db.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