# Example .env file # 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" # 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" # For Twitch Auth to fetch access token TWITCH_CLIENT_ID="twitch_client_id" TWITCH_CLIENT_SECRET="twitch_client_secret" # For NextAuth NEXTAUTH_URL="http://localhost:3000" NEXTAUTH_SECRET="nextauth_secret" # For Github Auth GITHUB_CLIENT_ID="github_client_id" GITHUB_CLIENT_SECRET="github_client_secret"