-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
.gitignore
64 lines (54 loc) · 1.23 KB
/
.gitignore
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
57
58
59
60
61
62
63
64
# General
docker-compose.yml
# Python
backend/app/__pycache__/
backend/app/*/__pycache__/
backend/app/*/*/__pycache__/
backend/app/*.pyc
# Logs
backend/app/logs/*.log
backend/app/*.log
# user image folder images
backend/app/user_images/*.jpeg
backend/app/user_images/*.png
backend/app/user_images/*.jpg
# gpx and fit files
backend/app/files/*.gpx
backend/app/files/*.fit
backend/app/files/bulk_import/*.gpx
backend/app/files/bulk_import/*.fit
backend/app/files/processed/*.gpx
backend/app/files/processed/*.fit
# Frontend
frontend/app/img/users_img/*.*
# Logs
frontend/app/.gitignore
frontend/app/logs
frontend/app/*.log
frontend/app/npm-debug.log*
frontend/app/yarn-debug.log*
frontend/app/yarn-error.log*
frontend/app/pnpm-debug.log*
frontend/app/lerna-debug.log*
frontend/app/node_modules
frontend/app/.DS_Store
frontend/app/dist
frontend/app/dist-ssr
frontend/app/coverage
frontend/app/*.local
frontend/app/README.md
frontend/app/cypress/videos/
frontend/app/cypress/screenshots/
# Editor directories and files
frontend/app/.vscode/*
frontend/app/!.vscode/extensions.json
frontend/app/.idea
frontend/app/*.suo
frontend/app/*.ntvs*
frontend/app/*.njsproj
frontend/app/*.sln
frontend/app/*.sw?
frontend/app/*.tsbuildinfo
.DS_Store
# site folder
site/