Skip to content

Commit

Permalink
Update gitignore and dockerignore files
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjj committed Mar 6, 2021
1 parent 7283cba commit be97e00
Show file tree
Hide file tree
Showing 2 changed files with 191 additions and 30 deletions.
9 changes: 8 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
.git/
.pytest_cache/
.webpack_cache/
__pycache__/
assets/node_modules/
public/
.env

.coverage
.dockerignore
.env*
!.env.example
celerybeat-schedule
docker-compose.override.yml
212 changes: 183 additions & 29 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,63 +1,217 @@
# Mostly created by https://www.gitignore.io


### App #######################################################################

.webpack_cache/
public/*
!public/.keep

.env*
!.env.example
docker-compose.override.yml


### Python ####################################################################

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so
*$py.class

# Distribution / packaging
node_modules/
bin/
build/manifest.json
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
parts/
sdist/
var/
npm-debug.log
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
.pytest_cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
pytestdebug.log

# Translations
*.mo
*.pot

# Flask stuff
instance/
.webassets-cache

# Celery stuff
celerybeat-schedule
celerybeat.pid

# Sphinx documentation
docs/_build/
doc/_build/

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# OS and editor files
# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# profiling data
.prof


### Node ######################################################################

# Dependency directories
assets/node_modules/

# Optional eslint cache
.eslintcache


### OSX #######################################################################

# General
.DS_Store
*/**.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*
.*.sw*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk


### Vim #######################################################################

# Swap
[._]*.s[a-v][a-z]
!*.svg # comment out if you don't need vector files
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]

# Session
Session.vim
Sessionx.vim

# Temporary
.netrwhist
# Auto-generated tag files
tags
# Persistent undo
[._]*.un~


### VSCode ####################################################################

.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace


### Emacs #####################################################################

# -*- mode: gitignore; -*-
*~
.idea/
.mr.developer.cfg
.project
.pydevproject
*.tmproj
*.tmproject
tmtags

# App ignores.
.env
docker-compose.override.yml
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*

celerybeat*
# Org-mode
.org-id-locations
*_archive

*-[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f].*
# flymake-mode
*_flymake.*

*.gz
cache_manifest.json
# eshell files
/eshell/history
/eshell/lastdir

assets/node_modules/
public/*
# elpa packages
/elpa/

# reftex files
*.rel

# AUCTeX auto folder
/auto/

# cask packages
.cask/
dist/

# Flycheck
flycheck_*.el

# server auth directory
/server/

# projectiles files
.projectile

# directory configuration
.dir-locals.el

# network security
/network-security.data

0 comments on commit be97e00

Please sign in to comment.