diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-17 15:13:27 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-17 15:13:27 +0700 |
| commit | 05ef2c3712192df547587b7d02416f6be0419e1f (patch) | |
| tree | 98b55d77ddc751d5c6d4bebce3bde89b246d3e13 /.env.example | |
| parent | c2ca87ca89992e34bdc4d48c6f6db3553e852bcb (diff) | |
Update env and prisma schema
Diffstat (limited to '.env.example')
| -rw-r--r-- | .env.example | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.env.example b/.env.example index b4e85c3..e49afb7 100644 --- a/.env.example +++ b/.env.example @@ -1,3 +1,9 @@ -DATABASE_URL="mysql://username:password@host:port/db_name" + +DB_USER= +DB_PASS= +DB_HOST= +DB_PORT= +DB_NAME= +DB_URL="mysql://${DB_USER}:${DB_PASS}@${DB_HOST}:${DB_PORT}/${DB_NAME}" JWT_SECRET= SELF_HOST=
\ No newline at end of file |
