Skip to content

Commit fb2c4a7

Browse files
committed
chore: initial project scaffold
0 parents  commit fb2c4a7

93 files changed

Lines changed: 10644 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
DATABASE_URL=
2+
DATABASE_URL_UNPOOLED=
3+
NEXTAUTH_SECRET=
4+
NEXTAUTH_URL=http://localhost:3000
5+
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME=
6+
NEXT_PUBLIC_CLOUDINARY_UPLOAD_PRESET=
7+
CLOUDINARY_API_KEY=
8+
CLOUDINARY_API_SECRET=
9+
RESEND_API_KEY=
10+
CONTACT_NOTIFICATION_EMAIL=

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.env.local
2+
.env*.local
3+
node_modules/
4+
.next/
5+
out/
6+
dist/
7+
.DS_Store
8+
*.pem
9+
npm-debug.log*
10+
yarn-debug.log*
11+
pnpm-debug.log*
12+
.pnpm-store/
13+
coverage/
14+
.turbo/
15+
drizzle/
16+
*.tsbuildinfo

0 commit comments

Comments
 (0)