forked from Just-Moh-it/Mockoops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
23 lines (21 loc) · 1 KB
/
.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
# Follow this guide to get the below values (only AWS): https://www.remotion.dev/docs/lambda/setup
REMOTION_AWS_ACCESS_KEY_ID="<Your AWS Lambda Key>"
REMOTION_AWS_SECRET_ACCESS_KEY="<Your AWS Lambda Key>"
# The below 1 value Doesn't require a change
REMOTION_SITE_ID="mockoops"
# Any mongo site detailes to cache the renders
MONGO_URL=""
# The below 3 values are good as it is, change optionally
MONGO_DB_NAME="mockoops"
MONGO_RENDER_COLLECTION_NAME="renders"
MONGO_CACHE_COLLECTION_NAME="cache"
# Change according to your media bucket (any s3 compatible cloud provider works)
NEXT_PUBLIC_S3_BUCKET_NAME="remotion"
NEXT_PUBLIC_S3_DIR_NAME="remotion"
# All below values required and needed to be changed
NEXT_PUBLIC_S3_REGION="ap-south-1"
NEXT_PUBLIC_S3_ACCESS_KEY_ID=""
NEXT_PUBLIC_S3_SECRET_ACCESS_KEY=""
NEXT_PUBLIC_S3_URL="<Your S3 Buckey URL for uploading media to (not necessarily AWS)>"
# Optional: If you want to enable https://crisp.chat live chat support
NEXT_PUBLIC_CRISP_WEBSITE_ID="<Your Crisp.chat website id>"