forked from wishonia/wishonia
-
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.
- Loading branch information
Showing
568 changed files
with
18,316 additions
and
15,305 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 'generate_embeddings' | ||
name: "generate_embeddings" | ||
on: # run on main branch changes | ||
push: | ||
branches: | ||
|
@@ -11,7 +11,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: supabase/[email protected] # Find the latest version in the Marketplace | ||
with: | ||
supabase-url: 'https://scqhjglwdranqzljqesd.supabase.co' | ||
supabase-url: "https://scqhjglwdranqzljqesd.supabase.co" | ||
supabase-service-role-key: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }} | ||
openai-key: ${{ secrets.OPENAI_API_KEY }} | ||
docs-root-path: 'public/docs' # the path to the root of your md(x) files | ||
docs-root-path: "public/docs" # the path to the root of your md(x) files |
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,7 +1,7 @@ | ||
{ | ||
"WillLuke.nextjs.addTypesOnSave": true, | ||
"WillLuke.nextjs.hasPrompted": true, | ||
"files.associations": { | ||
"*.mdx": "markdown" | ||
} | ||
} | ||
"WillLuke.nextjs.addTypesOnSave": true, | ||
"WillLuke.nextjs.hasPrompted": true, | ||
"files.associations": { | ||
"*.mdx": "markdown" | ||
} | ||
} |
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
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
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,19 +1,19 @@ | ||
import { getCurrentUser } from "@/lib/session" | ||
import FeatureCards from "@/components/pages/feature-cards" | ||
import Hero from "@/components/pages/hero" | ||
import OpenSource from "@/components/pages/opensource" | ||
import { PollRandomGlobalProblems } from "@/components/poll-random-global-problems" | ||
import { PWARedirect } from "@/components/pwa-redirect" | ||
import {getCurrentUser} from "@/lib/session"; | ||
import {PollRandomGlobalProblems} from "@/components/poll-random-global-problems"; | ||
|
||
export default async function Home() { | ||
const user = await getCurrentUser() | ||
return ( | ||
<main> | ||
<Hero /> | ||
<PollRandomGlobalProblems user={user} /> | ||
const user = await getCurrentUser() | ||
return ( | ||
<main> | ||
<Hero /> | ||
<PollRandomGlobalProblems user={user} /> | ||
<FeatureCards /> | ||
<OpenSource /> | ||
<PWARedirect/> | ||
</main> | ||
) | ||
<PWARedirect /> | ||
</main> | ||
) | ||
} |
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
Oops, something went wrong.