-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from technologiestiftung/staging
- Loading branch information
Showing
69 changed files
with
5,309 additions
and
893 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
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 +1 @@ | ||
v18.13.0 | ||
18.16.0 |
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,3 +1,7 @@ | ||
{ | ||
"recommendations": ["humao.rest-client", "mikestead.dotenv"] | ||
} | ||
"recommendations": [ | ||
"humao.rest-client", | ||
"mikestead.dotenv", | ||
"mkhl.direnv" | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { createClient } from "@supabase/supabase-js"; | ||
import { Database } from "../_types/database"; | ||
export const SUPABASE_URL = | ||
process.env.SUPABASE_URL || "http://localhost:54321"; | ||
export const SUPABASE_ANON_KEY = process.env.SUPABASE_ANON_KEY || ""; | ||
export const SUPABASE_SERVICE_ROLE_KEY = | ||
process.env.SUPABASE_SERVICE_ROLE_KEY || ""; | ||
|
||
export const supabaseAnonClient = createClient<Database>( | ||
SUPABASE_URL, | ||
SUPABASE_ANON_KEY | ||
); | ||
export const supabaseServiceRoleClient = createClient<Database>( | ||
SUPABASE_URL, | ||
SUPABASE_SERVICE_ROLE_KEY | ||
); |
Oops, something went wrong.
d7bea78
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
giessdenkiez-de-postgres-api – ./
giessdenkiez-de-postgres-api-git-master-technologiestiftung1.vercel.app
giessdenkiez-de-postgres-api-technologiestiftung1.vercel.app
giessdenkiez-de-postgres-api.vercel.app
api.giessdenkiez.de