Skip to content
Snippets Groups Projects
Select Git revision
  • e54078f3006bd26522e07f37855e6d0239cc7aac
  • main default protected
  • ci_test
  • v2.0.27 protected
  • v2.0.26 protected
  • v2.0.25 protected
  • v2.0.24 protected
  • v2.0.23 protected
  • v2.0.22 protected
  • v2.0.21 protected
  • v2.0.20 protected
  • v2.0.19 protected
  • v2.0.18 protected
  • v2.0.17 protected
  • v2.0.16 protected
  • v2.0.15 protected
  • v2.0.14 protected
  • v2.0.13 protected
  • v2.0.12 protected
  • v2.0.11 protected
  • v2.0.10 protected
  • v2.0.9 protected
  • v2.0.8 protected
23 results

build_pipeline_generator.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    config.py.example 1.13 KiB
    # 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_UNIX = '/var/run/mysqld/mysqld.sock'
    #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 = 'auth.fsmpi.rwth-aachen.de'
    LDAP_PORT = 636
    LDAP_GROUPS = ['fachschaft']
    #ICAL_URL = 'https://user:password@mail.fsmpi.rwth-aachen.de/SOGo/....ics'
    ERROR_PAGE = 'static/500.html'
    RWTH_IP_RANGES = ['134.130.0.0/16', '137.226.0.0/16', '134.61.0.0/16', '192.35.229.0/24', '2a00:8a60::/32']
    FSMPI_IP_RANGES = ['137.226.35.192/29', '137.226.75.0/27', '137.226.127.32/27', '137.226.231.192/26', '134.130.102.0/26' ]