forked from armitage-labs/armitage-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
22 lines (15 loc) · 851 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
NEXTAUTH_SECRET="A randomly generated base64 string"
GITHUB_ID="Your github OAUTH app id"
GITHUB_SECRET="Your github OAUTH app secret"
DATABASE_URL="The URL of your postgres instance"
# Default credentials for supabase instance through localhost and docker host
DATABASE_URL="postgresql://postgres:[email protected]:54322/postgres?schema=public"
FRONTEND_DATABASE_URL='postgresql://postgres:postgres@localhost:54322/postgres?schema=public'
# The url of the cred-manager instance
CRED_MANAGER_ROUTE="http://localhost:8080"
# Change if not running cred-manager through Docker
SOURCECRED_INSTANCE_PATH="/instance"
# Uncomment if not running cred-manager through Docker and you are on mac,
# If you are unsure, leave it as it is
# SED_COMMAND="sed -i '' '5d' config/dependencies.json"
SED_COMMAND="sed -i '5d' config/dependencies.json"