Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • postgres_integration
  • s3compatible
  • intros
  • bootstrap4
  • modules
6 results

config.py.example

  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    config.py.example 841 B
    # Defaults for development ,do not use in production!
    DEBUG = False
    SERVER_IP = 'localhost'
    VIDEOPREFIX = 'https://videoag.fsmpi.rwth-aachen.de'
    VIDEOMOUNT = [{'mountpoint': 'files/protected/', 'prefix':'protected/'},{'mountpoint':'files/pub/','prefix':'pub/' }, {'mountpoint':'files/vpnonline/','prefix':'vpnonline/' }]
    #SECRET_KEY = 'something random'
    
    DB_SCHEMA = 'db_schema.sql'
    DB_DATA = 'db_example.sql'
    
    #DB_ENGINE = 'mysql'
    #MYSQL_HOST = 'localhost'
    #MYSQL_USER = 'videoag'
    #MYSQL_PORT = 3306
    #MYSQL_PASSWD = 'somuchsecret'
    #MYSQL_DB = 'videos'
    
    DB_ENGINE = 'sqlite'
    SQLITE_DB = 'db.sqlite'
    SQLITE_INIT_SCHEMA = True
    SQLITE_INIT_DATA = True
    
    #JOBS_API_KEY = 'something random'
    
    #LDAP_HOST = 'ldaps://rumo.fsmpi.rwth-aachen.de'
    #ICAL_URL = 'https://user:password@mail.fsmpi.rwth-aachen.de/SOGo/....ics'
    ERROR_PAGE = 'static/500.html'