forked from owl-app/time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
49 lines (41 loc) · 827 Bytes
/
.env
File metadata and controls
49 lines (41 loc) · 827 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
39
40
41
42
43
44
45
46
47
48
49
# App
APP_ENV=dev # possible values: dev | prod
APP_DEBUG=true
APP_NAME=OWL
APP_API_PREFIX=api
APP_API_VERSION=v1
# Api config
API_HOST=localhost
API_PORT=3000
# Client config
VITE_API_BASE_URL="http://localhost:3000"
VITE_API_PREFIX="/api/v1"
# DB_TYPE: sqlite | mysql
DB_TYPE=mysql
# DB Connection Parameters
DB_HOST=localhost
DB_PORT=3306
DB_NAME=owl_timetracker
DB_USER=
DB_PASS=
DB_TIMEZONE=Z
DB_SEEDS=false
# SMTP Mail Config
MAIL_FROM_ADDRESS=
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_PASSWORD=
# Sentry Client Key
SENTRY_DSN=
# Bcrypt
PASSWORD_BCRYPT_SALT_ROUNDS=12
# JWT
JWT_SECRET=example
JWT_EXPIRATION_TIME=10m
JWT_REFRESH_TOKEN_SECRET=example
JWT_REFRESH_TOKEN_EXPIRATION_TIME=30m
JWT_COOKIE_TOKEN_DOMAIN=localhost
JWT_COOKIE_TOKEN_HTTP_ONLY=true
JWT_COOKIE_TOKEN_SECURE=false
JWT_TOKEN_CLOCK_TOLERANCE=2