-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitignore
41 lines (35 loc) · 1.12 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
# See https://help.github.com/ignore-files/ for more about ignoring files.
# dependencies
student_assistant_client/node_modules
student_assistant_server/node_modules
# testing
student_assistant_client/coverage
student_assistant_server/coverage
# production
student_assistant_client/build
student_assistant_server/build
#Idea
# production
.idea
.idea/*
student_assistant_client/.idea
student_assistant_server/.idea
student_assistant_client/.idea/*
student_assistant_server/.idea/*
# misc
student_assistant_client/.DS_Store
student_assistant_client/.env.local
student_assistant_client/.env.development.local
student_assistant_client/.env.test.local
student_assistant_client/.env.production.local
student_assistant_server/.DS_Store
student_assistant_server/.env.local
student_assistant_server/.env.development.local
student_assistant_server/.env.test.local
student_assistant_server/.env.production.local
student_assistant_client/npm-debug.log*
student_assistant_client/yarn-debug.log*
student_assistant_client/yarn-error.log*
student_assistant_server/npm-debug.log*
student_assistant_server/yarn-debug.log*
student_assistant_server/yarn-error.log*