From c9842544787ad138731ab6b42a41b920fbd1bb54 Mon Sep 17 00:00:00 2001 From: Josh Pigford Date: Tue, 16 Jan 2024 09:02:40 -0600 Subject: [PATCH] .env organization --- .env.example | 51 ++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 36 insertions(+), 15 deletions(-) diff --git a/.env.example b/.env.example index 8c6641d2..99acc901 100644 --- a/.env.example +++ b/.env.example @@ -1,28 +1,49 @@ -# Used by `prisma` commands -NX_DATABASE_URL=postgresql://maybe:maybe@localhost:5433/maybe_local -NX_DATABASE_SECRET= - -# Market data API keys (https://polygon.io) -NX_POLYGON_API_KEY= - -# If using free ngrok account for webhooks -NGROK_AUTH_TOKEN= +######################################################################## +# AUTHENTICATION +######################################################################## # Generate a new secret using openssl rand -base64 32 NEXTAUTH_SECRET= NEXTAUTH_URL=http://localhost:4200 NX_NEXTAUTH_URL=http://localhost:4200 -NX_PLAID_SECRET= -NX_FINICITY_APP_KEY= -NX_FINICITY_PARTNER_SECRET= +######################################################################## +# WEBHOOKS +######################################################################## -# 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_APP_ID= 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_REPLY_TO_ADDRESS=support@example.com -NX_POSTMARK_API_TOKEN= +NX_POSTMARK_API_TOKEN= \ No newline at end of file