-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
22 lines (19 loc) · 1023 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -----------------------------------------------------------------------------
# App
# -----------------------------------------------------------------------------
NEXT_PUBLIC_APP_URL=http://localhost:3000
# -----------------------------------------------------------------------------
# Database (Postgres)
# -----------------------------------------------------------------------------
DATABASE_URL="postgres://dev:dev@localhost:5432/unitrack"
# -----------------------------------------------------------------------------
# Authentication (NextAuth.js)
# -----------------------------------------------------------------------------
# Generate a new secret on the command line with: openssl rand -base64 32
NEXTAUTH_SECRET=""
NEXTAUTH_URL="http://localhost:3000"
# -----------------------------------------------------------------------------
# GitHub OAuth (NextAuth.js)
# -----------------------------------------------------------------------------
NEXTAUTH_GITHUB_CLIENT_ID=""
NEXTAUTH_GITHUB_CLIENT_SECRET=""