Created
October 27, 2018 00:49
-
-
Save chairco/8697bbbe79002159c939ba03816fc639 to your computer and use it in GitHub Desktop.
gitignore sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# not upload | |
# local test file | |
client/ | |
.pytest_cache/ | |
src/.pytest_cache/ | |
command.txt | |
src/render.html | |
# Python virtualenv | |
[.]venv | |
env/ | |
manual/ | |
# Python runtime | |
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
.cache/ | |
*.py[cod] | |
# Installer logs | |
pip-log.txt | |
pip-delete-this-directory.txt | |
# Packaging files: | |
*.egg* | |
# Sphinx docs: | |
# Package-related files | |
# Documentation | |
*.egg | |
*.egg-info | |
dist | |
build | |
eggs | |
sdist | |
docs/_build | |
# SQLite3 database files: | |
*.db | |
*.sqlite3 | |
*.sqlite | |
# Logs: | |
*.log | |
*.out | |
# Environment variables | |
local.env | |
.env | |
# Django stuff: | |
*.pot | |
*.log | |
venv/ | |
assets/ | |
local.db | |
# Eclipse | |
.project | |
.pydevproject | |
.settings | |
# Linux Editors | |
*~ | |
\#*\# | |
/.emacs.desktop | |
/.emacs.desktop.lock | |
.elc | |
auto-save-list | |
tramp | |
.\#* | |
*.swp | |
*.swo | |
# Rope | |
.ropeproject | |
# Mac | |
.DS_Store | |
._* | |
# Windows | |
Thumbs.db | |
Desktop.ini | |
# PyCharm | |
*.iml | |
.idea/ | |
*.ipr | |
*.iws | |
.idea/ | |
# cache files for sublime text | |
*.tmlanguage.cache | |
*.tmPreferences.cache | |
*.stTheme.cache | |
*.sublime-workspace | |
*.sublime-project | |
# Cache | |
CACHE | |
# Testing / Unit test / coverage report | |
.coverage | |
.cache | |
.tox | |
nosetests.xml | |
# deploy key for travis | |
deploy_key | |
deploy_key.pub | |
# generated on Travis | |
/deploy_staging.sh | |
/deploy_master.sh | |
/secrets.tar | |
/borrow/coverage.xml | |
media/ | |
# C extension | |
*.so | |
# Template development | |
node_modules/ | |
################# | |
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
# C extensions | |
*.so | |
# Distribution / packaging | |
.Python | |
env/ | |
build/ | |
develop-eggs/ | |
dist/ | |
downloads/ | |
eggs/ | |
.eggs/ | |
lib/ | |
lib64/ | |
parts/ | |
sdist/ | |
var/ | |
*.egg-info/ | |
.installed.cfg | |
*.egg | |
# PyInstaller | |
# Usually these files are written by a python script from a template | |
# before PyInstaller builds the exe, so as to inject date/other infos into it. | |
*.manifest | |
*.spec | |
# Installer logs | |
pip-log.txt | |
pip-delete-this-directory.txt | |
# Unit test / coverage reports | |
htmlcov/ | |
.tox/ | |
.coverage | |
.coverage.* | |
.cache | |
nosetests.xml | |
coverage.xml | |
*,cover | |
.hypothesis/ | |
# Translations | |
*.mo | |
*.pot | |
# Django stuff: | |
*.log | |
local_settings.py | |
db.sqlite3 | |
# Flask stuff: | |
instance/ | |
.webassets-cache | |
# Scrapy stuff: | |
.scrapy | |
# Sphinx documentation | |
docs/_build/ | |
# PyBuilder | |
target/ | |
# IPython Notebook | |
.ipynb_checkpoints | |
# pyenv | |
.python-version | |
# celery beat schedule file | |
celerybeat-schedule | |
# dotenv | |
.env | |
# virtualenv | |
venv/ | |
ENV/ | |
VENV/ | |
# Spyder project settings | |
.spyderproject | |
# Rope project settings | |
.ropeproject | |
# PyCharm | |
.idea |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment