-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
38 lines (33 loc) · 874 Bytes
/
.env.example
File metadata and controls
38 lines (33 loc) · 874 Bytes
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
36
37
38
APP_NAME="HONO APP API"
APP_VERSION="1.0.0"
APP_DESCRIPTION="This is my app"
APP_SECRET="YOUR_SECRET_KEY_HERE"
APP_JWT_SECRET="YOUR_JWT_SECRET_HERE"
APP_JWT_EXPIRES_IN=3600
APP_PORT=8001
APP_HOST="localhost"
NODE_ENV="development"
APP_TIMEZONE="UTC"
SERVER_TIMEZONE="UTC"
APP_URL="http://localhost:8001"
CLIENT_URL="http://localhost:3000"
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/hono_clean"
CLICKHOUSE_HOST="http://localhost:8123"
CLICKHOUSE_USER="app"
CLICKHOUSE_PASSWORD="secret"
CLICKHOUSE_DATABASE="app"
REDIS_HOST="localhost"
REDIS_PORT=6379
REDIS_PASSWORD=password123
MAIL_HOST=
MAIL_PORT=
MAIL_SECURE=
MAIL_USER=
MAIL_PASS=
MAIL_FROM=
CORS_ORIGIN="*"
CORS_METHODS="GET,POST,PUT,PATCH,DELETE,OPTIONS"
CORS_ALLOWED_HEADERS="Content-Type,Authorization"
CORS_EXPOSED_HEADERS="Content-Type,Authorization"
CORS_MAX_AGE="3600"
CORS_CREDENTIALS=true