Addded ctf platform Flask app with basic auth functions register, login, logout Added ctf platform database design (MySQL Workbench) Added forward engineered SQL file Added wsgi startup script Installed various python dependencies README.md Updated .gitignore Updated
5 lines
135 B
INI
5 lines
135 B
INI
MYSQL_DATABASE_HOST = 'localhost'
|
|
MYSQL_DATABASE_USER = 'ctf_user'
|
|
MYSQL_DATABASE_PASS = ''
|
|
MYSQL_DATABASE_DB = 'ctf_main'
|
|
DEBUG = True |