-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
17 lines (14 loc) · 724 Bytes
/
.env.example
File metadata and controls
17 lines (14 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# database variables
DATABASE_URL="postgresql://..." # valid postgres connection string.
# authentication variables
GITHUB_ID="<oauth_app_client_id>" # https://github.com/settings/developers
GITHUB_SECRET="<oauth_app_client_secret>"
TWITTER_ID="<oauth_app_client_id>" # https://developer.twitter.com/en/portal/projects/
TWITTER_SECRET="<oauth_app_client_secret>"
NEXTAUTH_SECRET="<openssl rand -base64 32>" # https://next-auth.js.org/configuration/options#secret
# general variables
NEXT_PUBLIC_UMAMI_ID="<umami_analytics_id>" # https://cloud.umami.is
NEXT_PUBLIC_URL="www.isitayush.dev"
NEXT_PUBLIC_BIRTHDAY="<yyyy-mm-dd>T<hh:mm:ss>.000Z"
NEXT_PUBLIC_SOMETHING="<something>
NEXT_PUBLIC_SOMETHING_ELSE="<something_else>"