{"id":28243707,"url":"https://github.com/bronsondunbar/vercel-project-manager","last_synced_at":"2026-05-17T19:36:05.731Z","repository":{"id":286956235,"uuid":"954570518","full_name":"bronsondunbar/vercel-project-manager","owner":"bronsondunbar","description":"A modern web application for managing multiple Vercel projects and accounts in one place. Built with Next.js, TypeScript, and Supabase.","archived":false,"fork":false,"pushed_at":"2025-04-09T06:24:59.000Z","size":91,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-24T05:47:30.999Z","etag":null,"topics":["open-source","vercel","vercel-deployment"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bronsondunbar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-25T09:34:22.000Z","updated_at":"2025-08-12T13:23:12.000Z","dependencies_parsed_at":"2025-04-09T07:27:25.727Z","dependency_job_id":"c9ce10e0-7054-4137-b9fe-052e858955cc","html_url":"https://github.com/bronsondunbar/vercel-project-manager","commit_stats":null,"previous_names":["bronsondunbar/vercel-project-manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bronsondunbar/vercel-project-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bronsondunbar%2Fvercel-project-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bronsondunbar%2Fvercel-project-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bronsondunbar%2Fvercel-project-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bronsondunbar%2Fvercel-project-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bronsondunbar","download_url":"https://codeload.github.com/bronsondunbar/vercel-project-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bronsondunbar%2Fvercel-project-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33151940,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["open-source","vercel","vercel-deployment"],"created_at":"2025-05-19T07:07:51.118Z","updated_at":"2026-05-17T19:36:05.727Z","avatar_url":"https://github.com/bronsondunbar.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vercel Project Manager\n\nA modern web application for managing multiple Vercel projects and accounts in one place. Built with Next.js, TypeScript, and Supabase.\n\n## Features\n\n- 🔐 Secure authentication with Supabase\n- 🔑 Manage multiple Vercel API tokens\n- 📊 View and manage Vercel projects across different accounts\n- 🎨 Modern UI with Tailwind CSS and Radix UI components\n- ⚡ Fast development with Turbopack\n- 🔄 Real-time updates and state management\n\n## Tech Stack\n\n- **Framework:** Next.js 15.1.7\n- **Language:** TypeScript\n- **Styling:** Tailwind CSS\n- **UI Components:** Radix UI\n- **Authentication:** Supabase\n- **State Management:** React Hooks\n- **Development:** Turbopack\n\n## Prerequisites\n\n- Node.js 18+\n- npm or yarn\n- A Vercel account\n- A Supabase account\n\n## Environment Variables\n\nCreate a `.env.local` file in the root directory with the following variables:\n\n```env\nNEXT_PUBLIC_SUPABASE_URL=your_supabase_url\nNEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key\n```\n\n```\n-- Create a new table for multiple tokens\nCREATE TABLE user_vercel_tokens (\n  id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),\n  user_id UUID NOT NULL REFERENCES auth.users(id) ON DELETE CASCADE,\n  token_value TEXT NOT NULL,\n  token_name TEXT NOT NULL,\n  created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(),\n  UNIQUE(user_id, token_name)\n);\n```\n\n## Getting Started\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/yourusername/vercel-project-manager.git\ncd vercel-project-manager\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n# or\nyarn install\n```\n\n3. Set up your environment variables as described above.\n\n4. Run the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\n5. Open [http://localhost:3000](http://localhost:3000) with your browser to see the application.\n\n## Development\n\n- `npm run dev` - Start the development server with Turbopack\n- `npm run build` - Build the application for production\n- `npm run start` - Start the production server\n- `npm run lint` - Run ESLint for code linting\n\n## Project Structure\n\n```\n├── src/\n│   ├── app/           # Next.js app directory\n│   ├── components/    # React components\n│   ├── hooks/        # Custom React hooks\n│   └── lib/          # Utility functions and configurations\n├── public/           # Static assets\n└── ...config files\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbronsondunbar%2Fvercel-project-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbronsondunbar%2Fvercel-project-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbronsondunbar%2Fvercel-project-manager/lists"}