initial commit
This commit is contained in:
63
.gitignore
vendored
Normal file
63
.gitignore
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
# Node.js
|
||||
node_modules/
|
||||
npm-debug.log
|
||||
yarn-debug.log
|
||||
yarn-error.log
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
db.conf
|
||||
|
||||
# Docker
|
||||
.dockerignore
|
||||
.docker/
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Database
|
||||
*.sql
|
||||
*.dump
|
||||
*.sqlite
|
||||
*.db
|
||||
|
||||
# Build directories
|
||||
dist/
|
||||
build/
|
||||
coverage/
|
||||
|
||||
# Temporary files
|
||||
.tmp/
|
||||
.temp/
|
||||
.cache/
|
||||
tmp/
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.directory
|
||||
Desktop.ini
|
||||
|
||||
# Editor directories and files
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.project
|
||||
.settings/
|
||||
.classpath
|
||||
.factorypath
|
||||
|
||||
# Specific to this project
|
||||
# Add any project-specific files to ignore here
|
||||
Reference in New Issue
Block a user