-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy path.env.example
More file actions
81 lines (63 loc) · 2.26 KB
/
.env.example
File metadata and controls
81 lines (63 loc) · 2.26 KB
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
72
73
74
75
76
77
78
79
80
81
# Application Configurations
# You can change app base url according to your requirement
APP_BASE_URL="http://localhost:3000"
# JWT Authentication Secret Key
# Generate with: ruby -rsecurerandom -e 'puts SecureRandom.hex(64)'
DEVISE_JWT_SECRET_KEY="your-secure-jwt-secret-key-here"
# Mailer Configuration
EMAIL_DELIVERY_METHOD='letter_opener_web'
DEFAULT_MAILER_SENDER="info@miru.so"
REPLY_TO_EMAIL="no-reply@getmiru.com"
# SendGrid Email Configuration
SENDGRID_USERNAME='apikey'
SENDGRID_PASSWORD=
SMTP_DOMAIN='saeloun.com'
SMTP_PORT=587
# AWS S3 Credentials
AWS_ACCESS_KEY_ID= "<Replace with aws S3 access key id>"
AWS_SECRET_ACCESS_ID= "<Replace with aws S3 secret access key>"
AWS_S3_BUCKET_NAME= "<Replace with AWS S3 bucket name>"
AWS_REGION= "<Replace with AWS S3 Region>"
# Google Credentials
GOOGLE_OAUTH_CLIENT_ID='google-oauth-client-id'
GOOGLE_OAUTH_CLIENT_SECRET='google-oauth-client-secret'
GITHUB_OAUTH_CLIENT_ID='github-oauth-client-id'
GITHUB_OAUTH_CLIENT_SECRET='github-oauth-client-secret'
MIRU_GH_CLIENT_ID='github-oauth-client-id'
MIRU_GH_TOKEN='github-oauth-client-secret'
# Application Monitoring (Sentry)
# Stripe
STRIPE_PUBLISHABLE_KEY="stripe_publishable_key"
STRIPE_SECRET_KEY="stripe_secret_key"
STRIPE_WEBHOOK_ENDPOINT_SECRET="stripe_webhook_endpoint_secret"
STRIPE_SUBSCRIPTION_PRICE_ID="price_fallback"
STRIPE_SUBSCRIPTION_PRICE_ID_MONTHLY="price_monthly"
STRIPE_SUBSCRIPTION_PRICE_ID_YEARLY="price_yearly"
STRIPE_PLAN_PAGE_URL=""
#Wise
WISE_API_URL="https://api.sandbox.transferwise.tech"
WISE_ACCESS_TOKEN="access-token-12345"
WISE_PROFILE_ID="123456"
#Feature Flags
ENABLE_WEEKLY_REMINDER=
# Sentry
SENTRY_DSN=
#Database
DB_USER=
DB_PASS=
# Cable
WEBSOCKET_URL="ws://localhost:3000/cable"
SEED_DATA_FROM_CSV=true
VIRTUAL_VERIFIED_ADMIN_EMAILS=[]
CI=true
# SolidQueue Configuration
SOLID_QUEUE_USERNAME=<some_username>
SOLID_QUEUE_PASSWORD=<some_password>
MISSION_CONTROL_ENABLED=true
POSTMARK_API_TOKEN= "<Replace with postmark API Token>"
# Cloudflare subset artifact storage
CLOUDFLARE_API_TOKEN="<Replace with Cloudflare API token>"
CLOUDFLARE_ACCOUNT_ID="<Replace with Cloudflare account id>"
SANITIZED_SUBSET_R2_PREFIX="miru/sanitized-subsets"
SANITIZED_SUBSET_R2_BUCKET="miru-sanitized-subsets"
SOURCE_DUMP="tmp/migration/miru_production_20260306_203652.dump"