65 lines
841 B
Plaintext
65 lines
841 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# production
|
|
/dist
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# local env files
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
**/*.trace
|
|
**/*.zip
|
|
**/*.tar.gz
|
|
**/*.tgz
|
|
**/*.log
|
|
package-lock.json
|
|
**/*.bun
|
|
|
|
# local env files
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.test
|
|
.env.production
|
|
|
|
# local docker compose files
|
|
docker-compose.override.yml
|
|
|
|
# compiled output
|
|
server
|
|
server.exe
|
|
|
|
# debug and cached routes
|
|
/src/routes.ts
|
|
/src/modules/debug
|
|
|
|
# Credential files
|
|
/src/config/account/*.ts
|
|
|
|
# uploaded files
|
|
/uploads
|
|
|
|
/scripts/git-multipush.ts |