mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-05-18 05:40:29 -04:00
Add local dev info
This commit is contained in:
17
.env.example
17
.env.example
@@ -2,14 +2,27 @@
|
||||
|
||||
# Required variables for basic local functionality
|
||||
|
||||
# For database connection. A 16-character password with digits and letters.
|
||||
SUPABASE_DB_PASSWORD=
|
||||
# For database read access.
|
||||
# Ask the project admin. Should start with "eyJh".
|
||||
NEXT_PUBLIC_SUPABASE_KEY=
|
||||
|
||||
# For authentication.
|
||||
# Ask the project admin. Should start with "AIza".
|
||||
NEXT_PUBLIC_FIREBASE_API_KEY=
|
||||
|
||||
|
||||
# Optional variables for the backend server functionality (modifying user data, etc.)
|
||||
|
||||
# For database write access.
|
||||
# A 16-character password with digits and letters.
|
||||
# Ideally this secret should not be shared, even to the developers.
|
||||
# TODO: set up local Postgres instead of Supabase for local development, add instructions to README, and remove this variable.
|
||||
SUPABASE_DB_PASSWORD=
|
||||
|
||||
# For Firebase access.
|
||||
GOOGLE_APPLICATION_CREDENTIALS_DEV="[...].json"
|
||||
GOOGLE_APPLICATION_CREDENTIALS_PROD="${GOOGLE_APPLICATION_CREDENTIALS_DEV}"
|
||||
|
||||
# The URL where your local backend server is running.
|
||||
# You can change the port if needed.
|
||||
NEXT_PUBLIC_API_URL=localhost:8088
|
||||
|
||||
Reference in New Issue
Block a user