Skip to content

Commit e1bdaba

Browse files
authored
Merge pull request #377 from kodegreen70/Logging-System-266
Logging system 266
2 parents 8c644cf + 5d1e8b1 commit e1bdaba

13 files changed

Lines changed: 3533 additions & 21 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ node_modules/
33
npm-debug.log*
44
yarn-debug.log*
55
yarn-error.log*
6+
/node_modules
7+
node_modules
68

79
# Production builds
810
dist/

backend/.gitignore

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# Environment variables
8+
.env
9+
.env.local
10+
.env.development.local
11+
.env.test.local
12+
.env.production.local
13+
14+
# Logs - Issue #266
15+
logs/
16+
*.log
17+
*.log.*
18+
*.log.gz
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
lerna-debug.log*
23+
24+
# Log directories
25+
logs/
26+
log/
27+
application-*.log
28+
error-*.log
29+
security-*.log
30+
performance-*.log
31+
metrics-*.log
32+
33+
# OS files
34+
.DS_Store
35+
Thumbs.db
36+
*.swp
37+
*.swo
38+
*~
39+
40+
# IDE
41+
.vscode/
42+
.idea/
43+
*.sublime-project
44+
*.sublime-workspace
45+
.project
46+
.classpath
47+
.settings/
48+
49+
# Build outputs
50+
dist/
51+
build/
52+
out/
53+
*.tsbuildinfo
54+
55+
# Test coverage
56+
coverage/
57+
.nyc_output/
58+
*.lcov
59+
60+
# Temporary files
61+
tmp/
62+
temp/
63+
*.tmp
64+
65+
# Database
66+
*.sqlite
67+
*.sqlite3
68+
*.db
69+
70+
# Prisma
71+
prisma/migrations/**/migration.sql.bak
72+
73+
# Docker
74+
.dockerignore
75+
76+
# Cache
77+
.cache/
78+
.parcel-cache/
79+
.next/
80+
.nuxt/
81+
82+
# Misc
83+
*.pid
84+
*.seed
85+
*.pid.lock
86+
.npm
87+
.eslintcache
88+
.node_repl_history

0 commit comments

Comments
 (0)