Skip to content

Commit

Permalink
Add .env.example
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiscs committed Jan 5, 2024
1 parent 4291432 commit b3881f9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Randomly generated secret key for cookies signing
REMIX_COOKIE_SECRET="sEcReT"
GOMMERCE_GRPC_ENDPOINT="http://localhost:50050"
GOMMERCE_AUTH_REALM="admin"
# Client basic auth token, calculated as btoa(secret_key + ':' + secret_code)
GOMMERCE_CLIENT_TOKEN="Og=="
# https://www.prisma.io/docs/orm/overview/databases/postgresql#connection-details
PRISMA_DATABASE_URL="postgresql://postgres:root@local@localhost:5432/gommerce?schema=public"
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"public/build": true
},
"files.associations": {
"*.css": "tailwindcss"
"*.css": "tailwindcss",
".env.*": "properties"
},
"editor.quickSuggestions": {
"strings": "on"
Expand Down

0 comments on commit b3881f9

Please sign in to comment.