forked from web-development-mart/microservicesWithPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
56 lines (43 loc) · 656 Bytes
/
Copy path.gitignore
File metadata and controls
56 lines (43 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Instructor reference — never pushed to the student repo
solution/
# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
dist/
build/
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
# Node.js
node_modules/
npm-debug.log*
# Environment — students copy .env.example to .env locally
.env
# OS
.DS_Store
Thumbs.db
# IDE
.vscode/
.idea/
# Docker
.dockerignore
# Frontend
dist/
frontend/dist
frontend/node_modules/
frontend/node_modules
frontend/dist
frontend/dist-ssr
frontend/*.local
modules/module-05/*
modules/module-06/*
modules/module-07/*
modules/module-08/*
modules/module-09/*
modules/module-09-10/*
modules/module-10/*