Skip to content

Commit

Permalink
Updated gitignore, copied gitignore to dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
josvandervelde committed Dec 21, 2023
1 parent 9ace5db commit 09cf01d
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 11 deletions.
58 changes: 58 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# dependencies
node_modules
node_modules.nosync

/.pnp
.pnp.js

# testing
coverage

# production
build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
.env

npm-debug.log*
yarn-debug.log*
yarn-error.log*

__pycache__

migrations

*.ipynb

.idea
.vscode

*.pyc

cache

idea_testing.py

Internal_docs/

flask-cache-dir/

*.pem

script.sh

dev_data/ff\@ff.com/

temp_data/

.flaskenv

users.sql
node_modules
node_modules.nosync
venv
22 changes: 11 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# dependencies
**/node_modules/
**/node_modules.nosync/
node_modules
node_modules.nosync

/.pnp
.pnp.js

# testing
/coverage
coverage

# production
**/build/
build

# misc
.DS_Store
Expand All @@ -23,19 +23,18 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

/__pycache__
/src/dash/__pycache__
/migrations
/src/dashboard/__pycache__
__pycache__

migrations

*.ipynb
src/__pycache__/

.idea/
.idea
.vscode

*.pyc

cache/
cache

idea_testing.py

Expand All @@ -56,3 +55,4 @@ temp_data/
users.sql
node_modules
node_modules.nosync
venv

0 comments on commit 09cf01d

Please sign in to comment.