-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
35 lines (24 loc) · 1.58 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
24
25
26
27
28
29
30
31
32
33
34
35
# Name of your website
NEXT_PUBLIC_SITE_NAME="Woyage"
# URL of your website
NEXT_PUBLIC_SITE_URL="https://woyage.app/"
# Stage of your website (development/production) used to determine the environment
NEXT_PUBLIC_STAGE="development"
# Get this from your Supabase project settings
NEXT_PUBLIC_SUPABASE_ANON_KEY="..."
# Get this from your Supabase project settings
NEXT_PUBLIC_SUPABASE_URL="https://project_id.supabase.co"
# We are using Resend for everything related to emails, you need to sign up on Resend and set up a domain over there & setup the Supabase integration. Check out the following links for more information:
# https://resend.com/docs/dashboard/domains/introduction
# https://supabase.com/partners/integrations/resend
# https://resend.com/api-keys
# After setting up the domain, set the RESEND_EMAIL variable
RESEND_EMAIL="re_..."
# Support email for your website, remove this if you don't plan to implement support
NEXT_PUBLIC_SUPPORT_EMAIL="support@woyage.app"
# Woyage use Supabase Webhooks to email the admin whenever a new support request is created. You can set a webhook in your Supabase project settings:
# https://supabase.com/docs/guides/database/webhooks
# When you create a webhook, create a HEADER with a key as `supabase-verified` and a value that will be used to verify it, and set the following environment variable with the value you've set, in order to prevent unauthorized requests to your webhook
SUPABASE_WEBHOOK_HEADER_KEY="...."
# Email of the recipient of the support requests, remove this if you don't plan to implement support
SUPPORT_RECIPIENT="hey@ishaanbedi.com"