CHORE(app): initial configuration

- Add initial app settings
- Configure base deployment
This commit is contained in:
2025-11-24 22:09:18 +09:00
parent f1fadca73e
commit 8b195378a5
70 changed files with 2694 additions and 21 deletions

36
.gitignore vendored
View File

@@ -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