forked from ThijmenGThN/directus-themebuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.env
34 lines (27 loc) · 1.24 KB
/
sample.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
# --------------- Docker deploy modifier, adjust to deploy for production.
# Options | "dev" or "prod", production deploys the app.
COMPOSE_PROFILES= "dev"
# ------------ Service ports exposed by docker, ensure to prevent conflicts.
APP_PORT= "3000"
ENDPOINT_PORT= "8055"
# ------------ Define cors to ensure secure origins.
# "ORIGIN" | An URL that points to the frontend.
# "ENDPOINT" | The endpoint URL of Directus.
CORS_ORIGIN= "http://localhost:3000"
CORS_ENDPOINT= "http://localhost:8055"
# ----- Ensure that these variables are randomized.
KEY= "next-leaflet-b5b5-5996-9aa3-922530ec40b1"
SECRET= "next-leaflet-cda1-52c2-5ea1-c8022c45e263"
# ------------- Defined to supply Directus with default credentials.
ADMIN_EMAIL= "[email protected]"
ADMIN_PASSWORD= "admin"
# ------------- Static Token to manipulate Directus from the API of Next.JS.
# STATIC_TOKEN= ""
# ------------------ SMTP credentials, settings are totally optional.
# Docs: https://docs.directus.io/self-hosted/config-options.html#email
# EMAIL_TRANSPORT= "smtp"
# EMAIL_SMTP_PORT= "587"
# EMAIL_SMTP_HOST= "mail.leaflet.app"
# EMAIL_SMTP_USER= "[email protected]"
# EMAIL_SMTP_PASSWORD= "admin"
# EMAIL_FROM= "[email protected]"