UW-Found provides a centralized platform for managing lost-and-found items for university students
- Next.js
- JavaScript
- Tailwind CSS
- Supabase (Authentication, PostgreSQL Database)
- Vercel (Deployment)
- Users authenticate using Supabase Auth
- Posters upload lost items with relevant details
- Items appear publicly as Unclaimed
- Other students submit claims
- Posters review claims and accept or reject them
- Students are notified of claim outcomes and any follow-up details supplied by the poster.
Clone the repository and install the dependencies:
git clone https://github.com/Theni1/CarDetect.git
cd CarDetect
npm install
Create a local .env.local file with the following:
NEXT_PUBLIC_SUPABASE_URL=your_api_key
NEXT_PUBLIC_SUPABASE_PUBLISHABLE_DEFAULT_KEY=your_api_key
Set up Supabase (Auth + Database)
- Create a new Supabase project.
- Enable Email/Password authentication.
- Create the required tables:
lost_itemsclaims
Start the development server:
npm run dev