summaryrefslogtreecommitdiffstats
path: root/.env.example
blob: 88f4663b77f81f0f4c479636751e702709bb0a52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FRONTEND_URL="https://www.frontend.com"
BACKEND_URL="https://www.backend.com"
GRAPHQL_ENDPOINT="/graphql"

AUTHOR_NAME="Your Name"
AUTHOR_EMAIL="your@email.com"
AUTHOR_URL="https://www.yourWebsite.com/"
FEED_DESCRIPTION="What you want..."
GITHUB_USER="YourName"

NEXT_PUBLIC_FRONTEND_URL="$FRONTEND_URL"
NEXT_PUBLIC_GITHUB_USER="$GITHUB_USER"
NEXT_PUBLIC_GRAPHQL_API="$BACKEND_URL$GRAPHQL_ENDPOINT"

# Use this only in development mode. It prevents "unable to verify the first
# certificate" error when using a local domain with mkcert certificate for
# backend.
#NODE_TLS_REJECT_UNAUTHORIZED=0