123456789101112131415161718192021222324252627282930313233 |
- # Virtualenv
- env/
- venv/
- # VSCode
- .vscode
- # Python
- __pycache__/
- *.py[cod]
- *$py.class
- # Apps
- tickets/
- metaservicesynced/
- conf/
- design_template/
- webservice_running/
- landing/
- # Django
- migrations/
- staticfiles/
- media/
- # Other
- *.sqlite3
- *.*~
- *.*.swp
- .DS_Store
- # Project configuration variables
- core/settings_vars.py
|