-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dsp/close-registration
- Loading branch information
Showing
7 changed files
with
30 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
PUBLIC_SUPABASE_URL=<SUPABASE URL> | ||
PUBLIC_SUPABASE_ANON_KEY=<SUPERBASE ANON KEY> | ||
PUBLIC_SENDER_EMAIL=<EMAIL USED FOR AUTOMATIC EMAILS> | ||
PUBLIC_DISCORD_INVITE=<DISCORD SERVER INVITE LINK> | ||
PUBLIC_SES_REGION=<REGION OF YOU SES CONFIG> | ||
PUBLIC_SMTP_USER=<YOUR SMTP USER> | ||
PUBLIC_SMTP_PASS=<YOUR SMTP PASSWORD> | ||
PUBLIC_SMTP_HOST=<YOUR SMTP HOST> | ||
SUPABASE_URL=<SUPABASE URL> | ||
SUPABASE_ANON_KEY=<SUPERBASE ANON KEY> | ||
SENDER_EMAIL=<EMAIL USED FOR AUTOMATIC EMAILS> | ||
DISCORD_INVITE=<DISCORD SERVER INVITE LINK> | ||
SES_REGION=<REGION OF YOU SES CONFIG> | ||
SMTP_USER=<YOUR SMTP USER> | ||
SMTP_PASS=<YOUR SMTP PASSWORD> | ||
SMTP_HOST=<YOUR SMTP HOST> | ||
PUBLIC_BLOCKED_URLS=<BLOCKED URL's SEPARATED BY COMMAS> | ||
PUBLIC_HOST_URL=<YOUR HOST URL> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { createClient } from "@supabase/supabase-js"; | ||
|
||
export const supabase = createClient( | ||
import.meta.env.PUBLIC_SUPABASE_URL as string, | ||
import.meta.env.PUBLIC_SUPABASE_ANON_KEY as string, | ||
import.meta.env.SUPABASE_URL as string, | ||
import.meta.env.SUPABASE_ANON_KEY as string, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters