-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
28 lines (18 loc) · 844 Bytes
/
.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
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
DATABASE_URL="postgresql://<db_username>:<db_password>@<db_host_server>:<db_port>/<db_name>?schema=<db_schema>"
#NODE_ENV = "development" | "production"
SECRET=<SECRET_PHRASE> #this is for CryptoJS encrypting
SESSION_PASSWORD = <SECRET_PHRASE> #this is for iron-session
# enviroment variables from nodemailer send mails
SMTP_HOST=<smtp host>
SMTP_PORT=<smtp port>
SMTP_USER=<mail address or user>
SMTP_PASS=<mail password>
NOTIFICATION_MAIL=<Mail to give notification>
# by default localhost:3000
HOSTNAME=<DOMAIN_NAME>
PORT=<PORT_EXPOSE>
CONVERSION_BOLIVAR_API_URL="https://bcv-api.deno.dev/v1/exchange"
# Optional variables
SCHEDULE_UPDATE_BILLING=<cron_expression>
SCHEDULE_UPDATE_CONVERSION=<cron_expression>