-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds .gitignore files. Dramatically improves an image build in a development context.
- Loading branch information
1 parent
20d5c66
commit 981bb5f
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,47 @@ | ||
# Files to ignore by Docker when transfering context | ||
|
||
**/.git | ||
/docs/ | ||
/notebooks/ | ||
|
||
# Back-up files | ||
**/*~ | ||
**/*.swp | ||
|
||
# Generic auto-generated build files | ||
**/*.pyc | ||
**/*.pyo | ||
**/.ipynb_checkpoints/ | ||
|
||
# Specific auto-generated build files | ||
/.eggs | ||
/.tox | ||
**/__pycache__ | ||
/api_client/python/build/ | ||
/cli_client/python/build/ | ||
/importer_client/python/build/ | ||
**/dependencies/ | ||
/*.egg-info | ||
|
||
# Ignore frontend build related files | ||
**/node_modules | ||
/timesketch/static/dist | ||
/timesketch/frontend/dist | ||
/timesketch/frontend/yarn.lock | ||
|
||
# Test files | ||
**/.coverage | ||
**/tests-coverage.txt | ||
|
||
# Exclude Vagrant runtime files | ||
/vagrant/.vagrant/ | ||
/vagrant/*.log | ||
|
||
# Exclude .venv folder | ||
/.venv/ | ||
|
||
# Exclude Visual Studio Code files | ||
/.vscode/* | ||
|
||
# Exclude JetBrains IDE files | ||
/.idea/ |