Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
fe2e499
Remove RLS and policies from multiple tables
jomzxc Nov 5, 2025
0e2bee0
Add row-level security and policies for tables
jomzxc Nov 5, 2025
af31675
Add new SQL script for handling new user trigger
jomzxc Nov 5, 2025
33b4c41
Rename timestamp trigger script to handle updated_at
jomzxc Nov 5, 2025
386bac7
Add foreign key constraint and index for peers table
jomzxc Nov 5, 2025
cd686bd
Enable realtime for peers and rooms tables
jomzxc Nov 5, 2025
cb1e7d6
Revert "Add foreign key constraint and index for peers table"
jomzxc Nov 5, 2025
3cb2357
refactor(sql): improve migration clarity and naming consistency
jomzxc Nov 5, 2025
87ab523
Merge pull request #1
jomzxc Nov 5, 2025
a1643b1
Initial plan
Copilot Nov 5, 2025
c8054ae
Initial assessment of build issues
Copilot Nov 5, 2025
c135172
Fix Next.js 16 build errors and add environment variable handling
Copilot Nov 5, 2025
b59cb2b
Migrate from middleware.ts to proxy.ts per Next.js 16 convention
Copilot Nov 5, 2025
ff82d5e
Update README with improved build instructions and environment setup
Copilot Nov 5, 2025
705b2b7
Merge pull request #7 from jomzxc/copilot/fix-build-error-in-next-config
jomzxc Nov 5, 2025
212e83d
feat: add eslint config to Next.js build
v0[bot] Nov 5, 2025
973c0e8
Initial plan
Copilot Nov 5, 2025
5239354
docs: create comprehensive README and CONTRIBUTING, remove redundant …
Copilot Nov 5, 2025
80b74e7
docs: correct Next.js and React versions to match package.json
Copilot Nov 5, 2025
cf2dbb7
docs: improve README and CONTRIBUTING based on code review feedback
Copilot Nov 5, 2025
4649583
Merge pull request #9 from jomzxc/copilot/edit-markdowns-remove-extras
jomzxc Nov 6, 2025
97df76c
Update issue templates
jomzxc Nov 6, 2025
5b73f6c
Initial plan
Copilot Nov 6, 2025
6b86be8
Add MIT License file
Copilot Nov 6, 2025
602f06c
Initial plan
Copilot Nov 6, 2025
7b17624
Merge pull request #10 from jomzxc/copilot/audit-profile-tests-repo-docs
jomzxc Nov 6, 2025
ee8f4b3
Add dynamic cursor styles for interactive elements
Copilot Nov 6, 2025
7645b0f
Remove duplicate cursor styles from unused globals.css
Copilot Nov 6, 2025
5c41d5c
Merge pull request #12 from jomzxc/copilot/add-dynamic-cursor-functio…
jomzxc Nov 6, 2025
bf85c19
Update GitHub link to point to WebDrop repository
jomzxc Nov 6, 2025
6df0352
Initial plan
Copilot Nov 6, 2025
728e693
Replace placeholder credentials with fail-fast error throwing
Copilot Nov 6, 2025
82ccc2e
Update lib/supabase/client.ts
jomzxc Nov 6, 2025
ab1c0dd
Merge branch 'develop' into copilot/sub-pr-14
jomzxc Nov 6, 2025
89c0b02
Merge pull request #15 from jomzxc/copilot/sub-pr-14
jomzxc Nov 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# dependencies
/node_modules
package-lock.json

# next.js
/.next/
Expand All @@ -16,8 +17,12 @@ yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files
.env*
# env files (but keep .env.example)
.env*.local
.env.local
.env.development.local
.env.test.local
.env.production.local

# vercel
.vercel
Expand Down
Loading