mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 07:25:19 +02:00
.env organization
This commit is contained in:
parent
e4043cd090
commit
c984254478
1 changed files with 36 additions and 15 deletions
51
.env.example
51
.env.example
|
@ -1,28 +1,49 @@
|
||||||
# Used by `prisma` commands
|
########################################################################
|
||||||
NX_DATABASE_URL=postgresql://maybe:maybe@localhost:5433/maybe_local
|
# AUTHENTICATION
|
||||||
NX_DATABASE_SECRET=
|
########################################################################
|
||||||
|
|
||||||
# Market data API keys (https://polygon.io)
|
|
||||||
NX_POLYGON_API_KEY=
|
|
||||||
|
|
||||||
# If using free ngrok account for webhooks
|
|
||||||
NGROK_AUTH_TOKEN=
|
|
||||||
|
|
||||||
# Generate a new secret using openssl rand -base64 32
|
# Generate a new secret using openssl rand -base64 32
|
||||||
NEXTAUTH_SECRET=
|
NEXTAUTH_SECRET=
|
||||||
NEXTAUTH_URL=http://localhost:4200
|
NEXTAUTH_URL=http://localhost:4200
|
||||||
NX_NEXTAUTH_URL=http://localhost:4200
|
NX_NEXTAUTH_URL=http://localhost:4200
|
||||||
|
|
||||||
NX_PLAID_SECRET=
|
########################################################################
|
||||||
NX_FINICITY_APP_KEY=
|
# WEBHOOKS
|
||||||
NX_FINICITY_PARTNER_SECRET=
|
########################################################################
|
||||||
|
|
||||||
# Teller API keys (https://teller.io)
|
# 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=
|
||||||
|
|
||||||
|
########################################################################
|
||||||
|
# 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=
|
||||||
|
|
||||||
|
# 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=
|
NX_TELLER_SIGNING_SECRET=
|
||||||
NX_TELLER_APP_ID=
|
NX_TELLER_APP_ID=
|
||||||
NX_TELLER_ENV=sandbox
|
NX_TELLER_ENV=sandbox
|
||||||
|
|
||||||
# Email credentials
|
########################################################################
|
||||||
|
# EMAIL
|
||||||
|
########################################################################
|
||||||
|
|
||||||
|
# We use Postmark for transactional emails. You can sign up for a free account
|
||||||
|
# and get a free API key at https://postmarkapp.com
|
||||||
NX_POSTMARK_FROM_ADDRESS=account@example.com
|
NX_POSTMARK_FROM_ADDRESS=account@example.com
|
||||||
NX_POSTMARK_REPLY_TO_ADDRESS=support@example.com
|
NX_POSTMARK_REPLY_TO_ADDRESS=support@example.com
|
||||||
NX_POSTMARK_API_TOKEN=
|
NX_POSTMARK_API_TOKEN=
|
Loading…
Add table
Add a link
Reference in a new issue