This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 126
/
.env.example
59 lines (48 loc) · 2.21 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
########################################################################
# AUTHENTICATION
########################################################################
# Generate a new secret using openssl rand -base64 32
NEXTAUTH_SECRET=
NEXTAUTH_URL=http://localhost:4200
NX_NEXTAUTH_URL=http://localhost:4200
########################################################################
# WEBHOOKS
########################################################################
# We use ngrok to expose a local development environment to the internet
# You can sign up for a free account and get an API key at https://ngrok.com
NGROK_AUTH_TOKEN=
NGROK_DOMAIN=
########################################################################
# DATABASE
########################################################################
NX_DATABASE_URL=postgresql://maybe:maybe@localhost:5433/maybe_local
NX_DATABASE_SECRET=
########################################################################
# FINANICAL DATA SOURCES
########################################################################
# Market Data
# We use Polygon.io for market data. You can sign up for a free account
# and get an API key for individual use at https://polygon.io
NX_POLYGON_API_KEY=
# Basic is free tier, see: https://polygon.io/pricing
NX_POLYGON_TIER=basic
# Automated banking data
# We use Teller.io for automated banking data. You can sign up for a free
# account and get a free API key at https://teller.io
NX_TELLER_SIGNING_SECRET=
NEXT_PUBLIC_TELLER_APP_ID=
NEXT_PUBLIC_TELLER_ENV=sandbox
NX_TELLER_ENV=sandbox
########################################################################
# EMAIL
########################################################################
# We currently support Postmark and SMTP for transactional emails. Sign
# up for a free account and get a free API key at https://postmarkapp.com.
# If using Postmark set the email provider to postmark
# If using SMTP set the email provider to smtp and add the following env vars
# NX_EMAIL_SMTP_HOST, NX_EMAIL_SMTP_PORT, NX_EMAIL_SMTP_USERNAME
# NX_EMAIL_SMTP_PASSWORD, NX_EMAIL_SMTP_SECURE
NX_EMAIL_PROVIDER=
NX_EMAIL_PROVIDER_API_TOKEN=