Skip to content

Commit 36ef36e

Browse files
feat: clean pycache on make clean (#10)
1 parent 93aeb12 commit 36ef36e

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.gitignore

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# dependencies
2-
/website/node_modules
3-
/website/server/node_modules
4-
/api/node_modules
5-
**/__pycache__
2+
**/node_modules/
3+
**/__pycache__/
4+
**/venv/
5+
**/.venv/
66

77
# Environment variables
8-
*.env
8+
**/*.env
99

1010
# production
11-
/website/server/build
11+
/website/server/build/
1212

1313
# misc
14-
.DS_Store
15-
*/.DS_Store
14+
**/.DS_Store
1615
.vscode/

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,7 @@ clean-images:
3838
done
3939

4040
clean: clean-containers clean-images
41-
docker system prune
41+
@rm -rf **/__pycache__
42+
@docker system prune
43+
44+
rebuild: clean docker

0 commit comments

Comments
 (0)