-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
35 lines (28 loc) · 1.14 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
NODE_ENV=development
APP_PORT=3000
APP_NAME="api_bun_hono_bootstrap"
JWT_SECRET=mYS3KuR3T0k€|\!
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_USERNAME=root
DATABASE_PASSWORD=secret
DATABASE_NAME="api_bun_hono_bootstrap"
DATABASE_MAX_CONNECTIONS=5
DATABASE_SSL_ENABLED=false
DATABASE_REJECT_UNAUTHORIZED=false
DATABASE_URL="postgresql://$DATABASE_USERNAME:$DATABASE_PASSWORD@$DATABASE_HOST:$DATABASE_PORT/$DATABASE_NAME?schema=public"
S3_PROTOCOL=http
S3_HOST=localhost
S3_PORT=5433
S3_CONSOLE_PORT=5434
S3_USERNAME=root
S3_DEFAULT_BUCKET=api_bun_hono_bootstrap
S3_PASSWORD=secrets3key
S3_URL="$S3_PROTOCOL://$S3_HOST:$S3_PORT"
BREVO_API_KEY=""
BREVO_SENDER_NAME=""
BREVO_SENDER_EMAIL="noreply@api_bun_hono_bootstrap.com"