Move existing app into /app
42
.gitignore
vendored
@@ -1,42 +1,44 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# App files
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
/node_modules
|
/app/node_modules
|
||||||
/.pnp
|
/app/.pnp
|
||||||
.pnp.js
|
/app/.pnp.js
|
||||||
|
|
||||||
# testing
|
# testing
|
||||||
/coverage
|
/app/coverage
|
||||||
|
|
||||||
# database
|
# database
|
||||||
/prisma/db.sqlite
|
/app/prisma/db.sqlite
|
||||||
/prisma/db.sqlite-journal
|
/app/prisma/db.sqlite-journal
|
||||||
|
|
||||||
# next.js
|
# next.js
|
||||||
/.next/
|
/app/.next/
|
||||||
/out/
|
/app/out/
|
||||||
next-env.d.ts
|
/app/next-env.d.ts
|
||||||
|
|
||||||
# production
|
# production
|
||||||
/build
|
/app/build
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
.DS_Store
|
/app/.DS_Store
|
||||||
*.pem
|
/app/*.pem
|
||||||
|
|
||||||
# debug
|
# debug
|
||||||
npm-debug.log*
|
/app/npm-debug.log*
|
||||||
yarn-debug.log*
|
/app/yarn-debug.log*
|
||||||
yarn-error.log*
|
/app/yarn-error.log*
|
||||||
.pnpm-debug.log*
|
/app/.pnpm-debug.log*
|
||||||
|
|
||||||
# local env files
|
# local env files
|
||||||
# do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables
|
# do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables
|
||||||
.env
|
/app/.env
|
||||||
.env*.local
|
/app/.env*.local
|
||||||
|
|
||||||
# vercel
|
# vercel
|
||||||
.vercel
|
/app/.vercel
|
||||||
|
|
||||||
# typescript
|
# typescript
|
||||||
*.tsbuildinfo
|
/app/*.tsbuildinfo
|
||||||
|
|||||||
1
app/dist/tsconfig.tsbuildinfo
vendored
Normal file
0
pnpm-lock.yaml → app/pnpm-lock.yaml
generated
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 704 B After Width: | Height: | Size: 704 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 858 B After Width: | Height: | Size: 858 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |