-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
38 lines (27 loc) · 1.48 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
DATABASE_URL='mysql://root@localhost/next-starter'
# When adding additional environment variables, the schema in "/src/env.mjs"
# should be updated accordingly.
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# Next Auth
# You can generate a new secret on the command line with:
# openssl rand -base64 32
# https://next-auth.js.org/configuration/options#secret
NEXTAUTH_SECRET="Y3Jpc3AtZWxrLTg1LmNsZXJrLmFjY291bnRzLmRld"
NEXTAUTH_URL="http://localhost:3000"
# Next Auth Discord Provider
DISCORD_CLIENT_ID=""
DISCORD_CLIENT_SECRET=""
SECRET=RANDOM_STRING
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_Y3Jpc3AtZWxrLTg1LmNsZXJrLmFjY291bnRzLmRldiQ
CLERK_SECRET_KEY=sk_test_2b71UQxY102dstmXGRVnj3v4DihH0Y9c15TgUSrWYC
RESEND_API_KEY="re_Wz9BvLbh_JSZ67QmhTEWnAFKYccydeYQN"
# We need to register a domain with Resend to send emails from
# Register a domain at https://resend.com/domains
# Or we can use this email provided by resend for only testing: "[email protected]"
# It is not recommended tho
EMAIL_FROM_ADDRESS="[email protected]"
# EMAIL_FROM_ADDRESS="[email protected]"