-
Notifications
You must be signed in to change notification settings - Fork 7
/
.env.example
44 lines (34 loc) · 1.56 KB
/
.env.example
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
39
40
41
42
43
44
# --- logging ---
DEBUG=
# Available scopes: auth:hasura-auth-hook,auth:next-auth
HASURA_GRAPHQL_ENABLED_LOG_TYPES=startup
# Available scopes: startup,query-log,http-log,webhook-log,websocket-log
# Default is "startup,http-log,webhook-log,websocket-log"
# --- /logging ---
PORT=3000
HASURA_GRAPHQL_DATABASE_URL=postgres://postgres:[email protected]:5432/postgres
# Note: The above matches the configuration of the "db" package script
# Set to "true" if your db server uses SSL but certs are unavailable (e.g. heroku)
NODE_PG_SSL_NO_VERIFY=false
HASURA_GRAPHQL_ADMIN_SECRET=admin_secret
NEXTAUTH_URL=http://localhost:3000
AUTH_JWT_SECRET=jwt_secret
# Google Client keys for authentication
GOOGLE_CLIENT_ID=914808709197-ipthdb4bba3htdrv7q8b9vn6460eklo5.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=bn1ro4mKEy-Aix3gV7DQqNQP
# These keys will work in development.
# To get your own keys for production:
# 1. Go to https://console.cloud.google.com/
# 2. Create a project
# 3. Go to https://console.developers.google.com/apis/credentials
# 4. Click "CREATE CREDENTIALS" > "OAuth client ID"
# - For "Application type" select "Web application"
# - For "Name" make up a name
# - For "Authorized JavaScript origins" enter "https://my-app-domain.com"
# - For "Authorized redirect URIs" enter "https://my-app-domain.com/api/auth/callback/google"
# - Click "Create"
# 5. Click "OAuth Consent Screen" from left-hand menu
# - For User Type select "External"
# - Click "Create"
# - Complete form
# - Set "Publishing status" from "Testing" to "In production"