forked from PrairieLearn/PrairieLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (43 loc) · 652 Bytes
/
.gitignore
File metadata and controls
57 lines (43 loc) · 652 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
57
# JetBrains IDE files
/.idea/
# OS X Finder files
**/.DS_Store
# Backend dependencies
/v1/backend/node_modules/
/v1/frontend-build/
/node_modules/
# Custom startup script
/start.sh
# Server log files
/v1/backend/server.log
/server.log
# MkDocs generated HTML
/site/
# JSDoc generated HTML
/doc/code-docs/
# Config files
/v1/backend/config.json
/v1/backend/config.json.*
/config.json
/aws-config.json
# Swap files
**/*.swp
**/*.swo
# Backup Files
**/*~
# NPM log file
npm-debug.log
# Code coverage files
/coverage/
/.nyc_output/
# Python
__pycache__/
*.py[cod]
*$py.class
# R
.Rproj.user
.Rhistory
.RData
.Ruserdata
# VSCode files
.vscode