chore: created .env.example file to store env variables
This commit is contained in:
parent
06f1c2fba2
commit
6f4c5d7195
1 changed files with 15 additions and 0 deletions
15
packages/hoppscotch-backend/.env.example
Normal file
15
packages/hoppscotch-backend/.env.example
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Prisma Config
|
||||
DATABASE_URL=postgresql://postgres:testpass@dev-db:5432/hoppscotch
|
||||
|
||||
# Postmark Config
|
||||
POSTMARK_SERVER_TOKEN=postmark-token-here
|
||||
POSTMARK_SENDER_EMAIL=support@hoppscotch.io
|
||||
|
||||
# Auth Tokens Config
|
||||
JWT_SECRET='add some secret here'
|
||||
REFRESH_TOKEN_VALIDITY="168h" # Default validity is 7 days
|
||||
ACCESS_TOKEN_VALIDITY="30s" # Default validity is 1 day
|
||||
|
||||
# Hoppscotch App Domain Config
|
||||
APP_DOMAIN="http://localhost:3000"
|
||||
|
||||
Loading…
Reference in a new issue