Add gitignore for local runtime files
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
||||
# Dependencies
|
||||
node_modules/
|
||||
|
||||
# Local environment and secrets
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
backend/.env
|
||||
backend/.env.*
|
||||
!backend/.env.example
|
||||
|
||||
# Runtime state
|
||||
backend/schedules.json
|
||||
backend/schedules.json.tmp
|
||||
|
||||
# Build output
|
||||
dist/
|
||||
frontend/dist/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# OS/editor files
|
||||
.DS_Store
|
||||
.idea/
|
||||
.vscode/
|
||||
Reference in New Issue
Block a user