Files

18 lines
446 B
Plaintext
Raw Permalink Normal View History

2022-10-27 17:09:11 -04:00
# Files to ignore
2025-09-16 09:09:32 -04:00
# Tell docker to ignore .gitkeep
2022-10-27 17:09:11 -04:00
.gitkeep
2025-09-16 09:09:32 -04:00
# Tell docker to ignore .gitignore
2022-10-27 17:09:11 -04:00
.gitignore
2025-09-16 09:09:32 -04:00
# Tell docker to ignore node_modules/**
2022-10-27 17:09:11 -04:00
node_modules/**
2025-09-16 09:09:32 -04:00
# Tell docker to ignore .node_modules/**
2022-10-27 17:09:11 -04:00
.node_modules/**
2025-09-16 09:09:32 -04:00
# Tell docker to ignore **/.gitkeep
2022-10-27 17:09:11 -04:00
**/.gitkeep
2025-09-16 09:09:32 -04:00
# Tell docker to ignore **/.gitignore
2022-10-27 17:09:11 -04:00
**/.gitignore
2025-09-16 09:09:32 -04:00
# Tell docker to ignore **/node_modules/**
2022-10-27 17:09:11 -04:00
**/node_modules/**
2025-09-16 09:09:32 -04:00
# Tell docker to ignore **/.node_modules/**
2022-10-27 17:09:11 -04:00
**/.node_modules/**