/ .gitignore
.gitignore
1 # Django # 2 *.log 3 *.pot 4 *.pyc 5 __pycache__ 6 db.sqlite3 7 media 8 9 # Backup files # 10 *.bak 11 12 # If you are using PyCharm # 13 # User-specific stuff 14 .idea/**/workspace.xml 15 .idea/**/tasks.xml 16 .idea/**/usage.statistics.xml 17 .idea/**/dictionaries 18 .idea/**/shelf 19 20 # AWS User-specific 21 .idea/**/aws.xml 22 23 # Generated files 24 .idea/**/contentModel.xml 25 26 # Sensitive or high-churn files 27 .idea/**/dataSources/ 28 .idea/**/dataSources.ids 29 .idea/**/dataSources.local.xml 30 .idea/**/sqlDataSources.xml 31 .idea/**/dynamic.xml 32 .idea/**/uiDesigner.xml 33 .idea/**/dbnavigator.xml 34 35 # Gradle 36 .idea/**/gradle.xml 37 .idea/**/libraries 38 39 # File-based project format 40 *.iws 41 42 # IntelliJ 43 out/ 44 45 # JIRA plugin 46 atlassian-ide-plugin.xml 47 48 # Python # 49 *.py[cod] 50 *$py.class 51 52 # Distribution / packaging 53 .Python build/ 54 develop-eggs/ 55 dist/ 56 downloads/ 57 eggs/ 58 .eggs/ 59 lib/ 60 lib64/ 61 parts/ 62 sdist/ 63 var/ 64 wheels/ 65 *.egg-info/ 66 .installed.cfg 67 *.egg 68 *.manifest 69 *.spec 70 71 # Installer logs 72 pip-log.txt 73 pip-delete-this-directory.txt 74 75 # Unit test / coverage reports 76 htmlcov/ 77 .tox/ 78 .coverage 79 .coverage.* 80 .cache 81 .pytest_cache/ 82 nosetests.xml 83 coverage.xml 84 *.cover 85 .hypothesis/ 86 87 # Jupyter Notebook 88 .ipynb_checkpoints 89 90 # pyenv 91 .python-version 92 93 # celery 94 celerybeat-schedule.* 95 96 # SageMath parsed files 97 *.sage.py 98 99 # Environments 100 .env 101 .venv 102 env/ 103 venv/ 104 ENV/ 105 env.bak/ 106 venv.bak/ 107 108 # mkdocs documentation 109 /site 110 111 # mypy 112 .mypy_cache/ 113 114 # Sublime Text # 115 *.tmlanguage.cache 116 *.tmPreferences.cache 117 *.stTheme.cache 118 *.sublime-workspace 119 *.sublime-project 120 121 # sftp configuration file 122 sftp-config.json 123 124 # Package control specific files Package 125 Control.last-run 126 Control.ca-list 127 Control.ca-bundle 128 Control.system-ca-bundle 129 GitHub.sublime-settings 130 131 # Visual Studio Code # 132 .vscode/* 133 !.vscode/settings.json 134 !.vscode/tasks.json 135 !.vscode/launch.json 136 !.vscode/extensions.json 137 .history 138 static/admin/ 139 htmlcov/coverage.xmlcoverage_report/ 140 .vscode