Move existing app into /app

This commit is contained in:
David Corbitt
2023-07-29 15:53:01 -07:00
parent 26b6fa4f0c
commit 2c65ad0c8f
169 changed files with 23 additions and 20 deletions

42
.gitignore vendored
View File

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

File diff suppressed because one or more lines are too long

View File

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

Before

Width:  |  Height:  |  Size: 704 B

After

Width:  |  Height:  |  Size: 704 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

Before

Width:  |  Height:  |  Size: 858 B

After

Width:  |  Height:  |  Size: 858 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Some files were not shown because too many files have changed in this diff Show More