-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.env.local
35 lines (27 loc) · 945 Bytes
/
example.env.local
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
# For local development, copy this file to .env.local and fill in the values.
# For production, set the environment variables in your hosting environment.
# Using Vercel: https://vercel.com/docs/environment-variables
# Your site url
NEXT_PUBLIC_SITE_URL="http://localhost:3000"
# Your Payment Gateway API credentials
NEXT_PUBLIC_PAYMENT_GATEWAY_URL="http://127.0.0.1:44555"
PAYMENT_GATEWAY_AUTH_TOKEN=""
# 64 hexadecimals characters
API_KEYS_SECRET=""
# Your Supabase instance credentials
SUPABASE_URL="http://192.168.0.10:54321"
SUPABASE_ANON_KEY=""
SUPABASE_SECRET_KEY=""
SUPABASE_JWT_SECRET=""
# Your S3 compatible storage credentials
S3_ENDPOINT=""
S3_REGION=""
S3_BUCKET=""
S3_ACCESS_KEY_ID=""
S3_SECRET_ACCESS_KEY=""
# The public url of your s3 bucket
NEXT_PUBLIC_STATIC_ASSETS_URL=""
# Coinmarketcap API key
COINMARKETCAP_API_KEY=""
# [OPTIONAL] A custom domain for your merchant API (like api.yourdomain.com)
CUSTOM_API_DOMAIN=""