2022-10-03 10:30:58 -04:00
|
|
|
# Files to ignore
|
2023-03-09 22:55:40 -05:00
|
|
|
# Tell docker to ignore .gitkeep
|
2022-10-03 10:30:58 -04:00
|
|
|
.gitkeep
|
2023-03-09 22:55:40 -05:00
|
|
|
# Tell docker to ignore .gitignore
|
2022-10-03 10:30:58 -04:00
|
|
|
.gitignore
|
2023-03-09 22:55:40 -05:00
|
|
|
# Tell docker to ignore node_modules/**
|
2023-02-24 04:09:18 -05:00
|
|
|
node_modules/**
|
2023-03-09 22:55:40 -05:00
|
|
|
# Tell docker to ignore .node_modules/**
|
2022-10-03 10:30:58 -04:00
|
|
|
.node_modules/**
|
2023-03-09 22:55:40 -05:00
|
|
|
# Tell docker to ignore **/.gitkeep
|
2023-02-24 04:09:18 -05:00
|
|
|
**/.gitkeep
|
2023-03-09 22:55:40 -05:00
|
|
|
# Tell docker to ignore **/.gitignore
|
2023-02-24 04:09:18 -05:00
|
|
|
**/.gitignore
|
2023-03-09 22:55:40 -05:00
|
|
|
# Tell docker to ignore **/node_modules/**
|
2023-02-24 04:09:18 -05:00
|
|
|
**/node_modules/**
|
2023-03-09 22:55:40 -05:00
|
|
|
# Tell docker to ignore **/.node_modules/**
|
2023-02-24 04:09:18 -05:00
|
|
|
**/.node_modules/**
|