-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_env
71 lines (56 loc) · 1.55 KB
/
_env
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#ENV
NODE_ENV=development
MAINTENANCE_MODE=false
PORT=3000
HOST=localhost
JWT_SECRET=asecurepassw0rd
TZ=Africa/Harare # For Lusaka too
DO_TELEMETRY=false
SMTP_PORT=25
# This was inserted by `prisma init`:
# 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
# Postgres
DATABASE_USER=postgres
DATABASE_PASSWORD=postgres
DATABASE_PORT=5432
DATABASE_NAME=authdb
DATABASE_URL="postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${HOST}:${DATABASE_PORT}/${DATABASE_NAME}?schema=public"
# Resend
# API used for sending emails, usually only for Dev mode
RESEND_API_KEY=
# Minio
MINIO_HOST=${HOST}
MINIO_PORT=9000
MINIO_ACCESS_KEY=
MINIO_SECRET_KEY=
MINIO_REGION='zm-south-1'
BUCKET_USERS=hello-users
BUCKET_PRODUCTS=hello-products
BUCKET_PHOTOS=hello-photos
BUCKET_FILES=hello-files
IMAGE_QUALITY=78
THUMBNAIL_QUALITY=48
BLUR_AMOUNT=3
# PGAdmin
PGADMIN_DEFAULT_PASSWORD="root"
# Redis Cache
REDIS_HOST=cache
REDIS_PORT=6379
REDIS_PASSWORD=my_password
ALLOW_EMPTY_PASSWORD=yes
REDIS_DATABASES=1
# OpenTelemetry
AXIOM_TOKEN=
AXIOM_DATASET=
# OAuth 2.0 API
# Google
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_API_KEY=
# Github
GH_BASIC_CLIENT_ID=
GH_BASIC_SECRET_ID=