Skip to content

Clean up - #194

Open
rebeccafitzpatr wants to merge 5 commits into
mainfrom
clean-up
Open

Clean up#194
rebeccafitzpatr wants to merge 5 commits into
mainfrom
clean-up

Conversation

@rebeccafitzpatr

Copy link
Copy Markdown
Collaborator

No description provided.

Copilot AI review requested due to automatic review settings July 28, 2026 03:09

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR is a small cleanup focused on reducing accidental leakage of secrets and avoiding committing unwanted dependency lockfiles.

Changes:

  • Sanitizes Supabase-related example env values to remove real project identifiers/keys.
  • Updates .gitignore to include package-lock.json.

Reviewed changes

Copilot reviewed 1 out of 3 changed files in this pull request and generated 1 comment.

File Description
.gitignore Adds package-lock.json to ignored files alongside .env.
.env.example Replaces real Supabase URL/key values with placeholders.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread .env.example

NEXT_PUBLIC_SUPABASE_URL=https://nsrrinhsnsbthvohhepl.supabase.co/rest/v1/
NEXT_PUBLIC_SUPABASE_ANON_KEY=sb_publishable_TkhJtH0lLZEqPoCM-ujnbw_k8UJYQB0
NEXT_PUBLIC_SUPABASE_URL=examplekey.supabase.co/rest/v1/
Copilot AI review requested due to automatic review settings July 28, 2026 03:23

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 5 changed files in this pull request and generated 1 comment.

Comments suppressed due to low confidence (1)

.env.example:5

  • The example Supabase URL no longer includes a scheme (https://). createClient(supabaseUrl, ...) expects a fully-qualified URL, so copying this .env.example value as-is would lead to an invalid URL and runtime errors.
NEXT_PUBLIC_SUPABASE_URL=examplekey.supabase.co/rest/v1/
NEXT_PUBLIC_SUPABASE_ANON_KEY=sb_publishable_.....

Comment thread src/components/about.tsx Outdated
Copilot AI review requested due to automatic review settings July 28, 2026 03:27

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 1 out of 4 changed files in this pull request and generated no new comments.

Comments suppressed due to low confidence (1)

.env.example:5

  • .env.example sets NEXT_PUBLIC_SUPABASE_URL without a scheme and with a /rest/v1/ suffix. getSupabase() passes this value directly to createClient(), which expects the base project URL (typically https://<project>.supabase.co), so the example as written will lead to a misconfigured client.
NEXT_PUBLIC_SUPABASE_URL=examplekey.supabase.co/rest/v1/
NEXT_PUBLIC_SUPABASE_ANON_KEY=sb_publishable_.....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants