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
21 lines
188 B
Plaintext
21 lines
188 B
Plaintext
#Ignore virtualenv
|
|
venv/
|
|
|
|
#Ignore editor specific files
|
|
.vimrc
|
|
.vscode/
|
|
*.bak
|
|
|
|
#ignore Python specific files
|
|
*.pyc
|
|
__pycache__/
|
|
|
|
instance/
|
|
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
dist/
|
|
build/
|