Skip to content

Commit

Permalink
Moved and updated .env example
Browse files Browse the repository at this point in the history
  • Loading branch information
InfiniteLoupe committed Nov 19, 2024
1 parent af1077c commit fdbe8e2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Environment
ENV_NAME="Boilerplate App"
ENV_TYPE="PROD"
ENV_DOMAIN="example.com"
ENV_SUBDOMAIN="app"

# Database
DB_NAME="pernapp"
DB_OPERATIONAL_SCHEMA="myapp"
DB_AUDIT_SCHEMA="myapp_audit"
DB_AUDIT_ENABLED=false
DB_API_USER="DBController"
DB_API_USER_PASSWORD="aSecretPassword"
DB_SUPER_USER="postgres"
DB_SUPER_USER_PASSWORD="aSuperDuperSecretPassword"
DB_HOST="localhost"
DB_PORT=5432

# Client
CLIENT_PORT=3000

# Server
SERVER_PORT=5000
SERVER_HOST="localhost"
SERVER_PROTOCOL="http"
SERVER_API_PATH="/api"
SERVER_API_URL="${SERVER_PROTOCOL}://${SERVER_HOST}:${SERVER_PORT}${SERVER_API_PATH}"

0 comments on commit fdbe8e2

Please sign in to comment.