-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
81 lines (64 loc) · 1.66 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Backend
/backend/env
/backend/db.sqlite3
/backend/blog/__pycache__
/backend/user_api/__pycache__
/backend/user_api/migrations
/backend/user_api/urls/__pycache__
/backend/blog_api/__pycache__
/backend/blog_api/migrations
/backend/blog_api/urls/__pycache__
/backend/comment_api/__pycache__
/backend/comment_api/migrations
/backend/comment_api/urls/__pycache__
/backend/rating_api/__pycache__
/backend/rating_api/migrations
/backend/rating_api/urls/__pycache__
# frontend
# Logs
/frontend_vue/logs
/frontend_vue/*.log
/frontend_vue/npm-debug.log*
/frontend_vue/yarn-debug.log*
/frontend_vue/yarn-error.log*
/frontend_vue/pnpm-debug.log*
/frontend_vue/lerna-debug.log*
/frontend_vue/node_modules
/frontend_vue/.DS_Store
/frontend_vue/dist
/frontend_vue/dist-ssr
/frontend_vue/coverage
/frontend_vue/*.local
/frontend_vue/cypress/videos/
/frontend_vue/cypress/screenshots/
# Editor directories and files
/frontend_vue/.vscode/*
/frontend_vue/!.vscode/extensions.json
/frontend_vue/.idea
/frontend_vue/*.suo
/frontend_vue/*.ntvs*
/frontend_vue/*.njsproj
/frontend_vue/*.sln
/frontend_vue/*.sw?
/frontend_vue/*.tsbuildinfo
# frontend_react
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/frontend_react/node_modules
/frontend_react/.pnp
/frontend_react/.pnp.js
# testing
/frontend_react/coverage
# production
/frontend_react/build
# misc
/frontend_react/.DS_Store
/frontend_react/.env.local
/frontend_react/.env.development.local
/frontend_react/.env.test.local
/frontend_react/.env.production.local
/frontend_react/npm-debug.log*
/frontend_react/yarn-debug.log*
/frontend_react/yarn-error.log*
//environment
/frontend_react/src/config