-
Notifications
You must be signed in to change notification settings - Fork 9
/
.env
40 lines (26 loc) · 1.01 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
#!/usr/bin/env bash
DATABASE_USER=sm
DATABASE_PASSWORD=sm_password
DATABASE_NAME=soulmedicine
ENABLED_LOCALES="en,fr,de,ur,ar"
ADMIN_BASIC_AUTH="admin:password"
EMAIL_FROM_ADDRESS="\"test\" <[email protected]>"
SMTP_ADDRESS="127.0.0.1"
SMTP_PORT="1025"
SITE_BASE_URL="http://localhost:3000"
# If this set to `true` make sure the `STORYBLOK_TOKEN` used has preview access level
CONTENT_PREVIEW_MODE=true
# ------------------------------------------------------------------------------
# Set these in your .env.local
# Only necessary if not running in a devcontainer
# REDIS_URL="redis://localhost:6379"
# REDIS_CACHE_URL="redis://localhost:6380"
# STORYBLOK_TOKEN="..."
# Firebase Authentication
# FIREBASE_PROJECT_ID="..."
# FIREBASE_API_KEY="..."
# Rollbar (only if you want to test errors are being reported locally)
# SERVER_ROLLBAR_ACCESS_TOKEN="..." # Identified on rollbar as post_server_item
# CLIENT_ROLLBAR_ACCESS_TOKEN="..." # Identified on rollbar as post_client_item
# ROLLBAR_ENV=dev
# GOOGLE_ANALYTICS_ID="..."