Improved .env.example

This commit is contained in:
Matt Aitken
2023-02-10 20:05:41 +00:00
parent cf04c3902f
commit bacd76c8e5
+69 -21
View File
@@ -1,24 +1,72 @@
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres
SESSION_SECRET=<random string>
MAGIC_LINK_SECRET=<random string>
GITHUB_CLIENT_ID=<random string>
GITHUB_SECRET=<random string>
FROM_EMAIL=<your email address>
REPLY_TO_EMAIL=<your email address>
RESEND_API_KEY=<RESEND_API_KEY>
MERGENT_KEY=<Mergent key>
LOGIN_ORIGIN=http://localhost:3000
TRIGGER_API_KEY=
TRIGGER_LOG_LEVEL=debug
##########################################################################################
# ************************************* BASICS *******************************************
##########################################################################################
APP_ENV=development
APP_ORIGIN=http://localhost:3000
NODE_ENV=development
PULSAR_ENABLED=1
SESSION_SECRET=
# Production Pulsar
# PULSAR_SERVICE_URL="pulsar+ssl://<cluster>.<orgId>.snio.cloud:6651"
# PULSAR_CLIENT_ID="<client id>"
# PULSAR_CLIENT_SECRET="<client secret>"
# PULSAR_ISSUER_URL="https://auth.streamnative.cloud/"
# PULSAR_AUDIENCE="urn:sn:pulsar:<orgId>:<instanceName>"
# PULSAR_TENANT="triggerdotdev"
# PULSAR_WORKFLOWS_NAMESPACE="workflows"
# PULSAR_QUEUES_NAMESPACE="queues"
# Dev Pulsar
PULSAR_SERVICE_URL="pulsar://localhost:6650"
#########################################################################################
# ************************************* LOGIN *******************************************
#########################################################################################
GITHUB_CLIENT_ID=
GITHUB_SECRET=
LOGIN_ORIGIN=http://localhost:3000
MAGIC_LINK_SECRET=
############################################################################################
# ************************************ OPTIONAL ********************************************
############################################################################################
POSTHOG_PROJECT_KEY=
############################################################################################
# ************************************ DATABASE ********************************************
############################################################################################
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres
################################################################################################
# ********************************** INTEGRATIONS **********************************************
################################################################################################
PIZZLY_HOST=http://localhost:3004
PIZZLY_SECRET_KEY=
#########################################################################################
# ************************************* EMAIL *******************************************
#########################################################################################
FROM_EMAIL=
REPLY_TO_EMAIL=
RESEND_API_KEY=<api_key>