CHORE(app): initial configuration
- Add initial app settings - Configure base deployment
This commit is contained in:
36
.gitignore
vendored
36
.gitignore
vendored
@@ -1,8 +1,9 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
node_modules
|
||||
services/nextjs/node_modules
|
||||
.pnp
|
||||
.pnp.*
|
||||
.yarn/*
|
||||
!.yarn/patches
|
||||
@@ -11,14 +12,15 @@
|
||||
!.yarn/versions
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
coverage
|
||||
services/nextjs/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
services/nextjs/.next/
|
||||
services/nextjs/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
services/nextjs/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
@@ -30,8 +32,9 @@ yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# env files (can opt-in for committing if needed)
|
||||
# env files
|
||||
.env*
|
||||
!.env.example
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
@@ -40,4 +43,21 @@ yarn-error.log*
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
/src/
|
||||
# prisma
|
||||
services/nextjs/prisma/dev.db
|
||||
services/nextjs/prisma/dev.db-journal
|
||||
services/nextjs/prisma/*.db
|
||||
services/nextjs/prisma/*.db-journal
|
||||
|
||||
# IDE
|
||||
.vscode
|
||||
.idea
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
Thumbs.db
|
||||
|
||||
# trunk
|
||||
.trunk
|
||||
|
||||
Reference in New Issue
Block a user