-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
devops: supabase #79
devops: supabase #79
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Important Auto Review SkippedReview was skipped due to path filters Files ignored due to path filters (1)
WalkthroughThis update involves integrating and configuring Supabase in a project, replacing previous tools and enhancing database management with new extensions and privileges. It also updates the client configuration to reflect changes in the Supabase URL. Changes
Possibly related issues
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Actionable comments posted: 1
@@ -1,6 +1,6 @@ | |||
import { createClient } from '@supabase/supabase-js' | |||
|
|||
export const supabase = createClient( | |||
'https://dvpusrbojetnuwbkyhzj.supabase.co', | |||
'https://djoktihsrcydlwzegdfa.supabase.co', |
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.
Consider using environment variables for the Supabase URL and secret key to enhance security and flexibility.
- 'https://djoktihsrcydlwzegdfa.supabase.co',
- 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImR2cHVzcmJvamV0bnV3Ymt5aHpqIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MDczNDE2NjcsImV4cCI6MjAyMjkxNzY2N30.bW2V9YKuBkEQzzQh0wDh1LYW2JP3mO4UaxnVoShCW3k'
+ process.env.SUPABASE_URL,
+ process.env.SUPABASE_SECRET_KEY
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
'https://djoktihsrcydlwzegdfa.supabase.co', | |
process.env.SUPABASE_URL, | |
process.env.SUPABASE_SECRET_KEY |
* devops: supabase init * feat: initial db schema migration * devops: supabase project
…ixes (#89) * chore: fix jsx structure * chore: fix layout and cls, removed motion * chore: fix layout and cls, removed motion * chore: format code * chore: correct project id on lhci github action * chore: layout, metadata, navigation adjustments * wip: project landing page header updates * wip: project landing page header updates * wip: project landing page header updates * wip: project landing page header updates * wip: mobile nav * fix: padding in project card * feat: initial fade in * fix: adjust padding of project card for mobile * wip: mobile nav * feat: mobile nav * feat: mobile nav * feat: mobile session * fix: hide mobile nav trigger * wip: desktop login and wallet connection flow * wip: desktop login and wallet connection flow * chore: updte bun lock * devops: update lhci, re-enable vconsole on test * fix: build * fix: restore blur bg color in auction card * fix: use same color for title and description * devops: supabase (#79) * devops: supabase init * feat: initial db schema migration * devops: supabase project * fix: dark mode color * fix: build --------- Co-authored-by: Nathanael Liu <[email protected]>
* docs: update readme * devops: add github actions (#80) * devops: add github actions * chore: update bunlock * chore: disable eslint action * devops: supabase (#79) * devops: supabase init * feat: initial db schema migration * devops: supabase project * chore: slow transitions, layout, cls, remove motion, supa, auth, ui fixes (#89) * chore: fix jsx structure * chore: fix layout and cls, removed motion * chore: fix layout and cls, removed motion * chore: format code * chore: correct project id on lhci github action * chore: layout, metadata, navigation adjustments * wip: project landing page header updates * wip: project landing page header updates * wip: project landing page header updates * wip: project landing page header updates * wip: mobile nav * fix: padding in project card * feat: initial fade in * fix: adjust padding of project card for mobile * wip: mobile nav * feat: mobile nav * feat: mobile nav * feat: mobile session * fix: hide mobile nav trigger * wip: desktop login and wallet connection flow * wip: desktop login and wallet connection flow * chore: updte bun lock * devops: update lhci, re-enable vconsole on test * fix: build * fix: restore blur bg color in auction card * fix: use same color for title and description * devops: supabase (#79) * devops: supabase init * feat: initial db schema migration * devops: supabase project * fix: dark mode color * fix: build --------- Co-authored-by: Nathanael Liu <[email protected]> * feat: whitepaper * chore: update navlinks * chore: close issues Close #61 Close #54 Close #55 Close #60 Close #62 Close #64 Close #67 Close #69 Close #72 Close #77 Close #78 Close #84 Close #68 Close #63 Close #86 Close #34 Related #89 * chore: udpate whitepaper link * feat: project data card 1 * feat: improve project hero in project landing * fix: vertical alignment in cards (#95) * fix: vertical alignment in cards * chore: add number * impr(webapp): adding appName to signatureRequest * feat(webapp): double table on auciton data card * feat(webapp): double table on auciton data card * feat(webapp): double table on auciton data card --------- Co-authored-by: Gabo Esquivel <[email protected]> Co-authored-by: Nathanael Liu <[email protected]>
related #44 #17
Summary by CodeRabbit
.gitignore
for the Supabase project.