Skip to content
Snippets Groups Projects
.env.example 807 B
Newer Older
Yusuf Akgül's avatar
Yusuf Akgül committed
# Public App URL
NEXT_PUBLIC_APP_URL="http://localhost:3000"

# PostgreSQL Database for connecting to Prisma
DATABASE_URL="postgresql://janedoe:mypassword@localhost:5432/mydb?schema=sample"
# Uploadthing Object Database for media storage
UPLOADTHING_SECRET="uploadthing_secret"
UPLOADTHING_APP_ID="uploadthing_app_id"
Yusuf Akgül's avatar
Yusuf Akgül committed
# URLs
TWITCH_AUTH_BASE_URL="https://id.twitch.tv/oauth2"
IGDB_BASE_URL="https://api.igdb.com/v4"
IGDB_IMG_BASE_URL="https://images.igdb.com/igdb/image/upload"

Yusuf Akgül's avatar
Yusuf Akgül committed
# For Twitch Auth to fetch access token
TWITCH_CLIENT_ID="twitch_client_id"
TWITCH_CLIENT_SECRET="twitch_client_secret"
Yusuf Akgül's avatar
Yusuf Akgül committed

# For NextAuth
Yusuf Akgül's avatar
Yusuf Akgül committed
NEXTAUTH_URL="http://localhost:3000"
NEXTAUTH_SECRET="nextauth_secret"
Yusuf Akgül's avatar
Yusuf Akgül committed

# For Github Auth
GITHUB_CLIENT_ID="github_client_id"
GITHUB_CLIENT_SECRET="github_client_secret"