{"id":29955062,"url":"https://github.com/al3rez/cleanmyaislop","last_synced_at":"2025-10-07T23:04:29.830Z","repository":{"id":306135978,"uuid":"1025122348","full_name":"al3rez/cleanmyaislop","owner":"al3rez","description":"A marketplace connecting people with AI-generated code issues to developers who can fix them","archived":false,"fork":false,"pushed_at":"2025-07-29T18:33:14.000Z","size":10800,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-02T07:35:01.784Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/al3rez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-07-23T18:57:07.000Z","updated_at":"2025-07-29T18:33:18.000Z","dependencies_parsed_at":"2025-07-23T21:59:23.288Z","dependency_job_id":"ce77748a-86ec-42ab-a971-d6355dd10522","html_url":"https://github.com/al3rez/cleanmyaislop","commit_stats":null,"previous_names":["al3rez/cleanmyaislop"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/al3rez/cleanmyaislop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3rez%2Fcleanmyaislop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3rez%2Fcleanmyaislop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3rez%2Fcleanmyaislop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3rez%2Fcleanmyaislop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/al3rez","download_url":"https://codeload.github.com/al3rez/cleanmyaislop/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/al3rez%2Fcleanmyaislop/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268578914,"owners_count":24273089,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-03T02:00:12.545Z","response_time":2577,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-08-03T17:09:26.664Z","updated_at":"2025-10-07T23:04:24.802Z","avatar_url":"https://github.com/al3rez.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CleanupMyAISlop\n\nA marketplace connecting people with AI-generated code issues to developers who can fix them.\n\n## Prerequisites\n\n- Node.js 18+ (managed via mise or nvm)\n- Docker and Docker Compose\n- npm\n\n## Quick Start\n\n1. **Clone the repository**\n   ```bash\n   git clone \u003cyour-repo-url\u003e\n   cd cleanupmyaislop\n   ```\n\n2. **Set up the development environment**\n   ```bash\n   npm run dev:setup\n   ```\n   This will:\n   - Start PostgreSQL in Docker\n   - Install dependencies\n   - Create database tables\n   - Set up environment variables\n\n3. **Start the development server**\n   ```bash\n   npm run dev\n   ```\n\n4. **Visit the application**\n   - Main site: http://localhost:5173\n   - Database UI: `npm run db:studio` (opens Drizzle Studio)\n\n## Development Commands\n\n### Database\n- `npm run dev:db:start` - Start PostgreSQL container\n- `npm run dev:db:stop` - Stop PostgreSQL container\n- `npm run dev:db:reset` - Reset database (deletes all data!)\n- `npm run db:studio` - Open Drizzle Studio to view/edit data\n- `npm run db:push` - Apply schema changes to database\n- `npm run db:generate` - Generate migration files\n\n### Development\n- `npm run dev` - Start development server\n- `npm run build` - Build for production\n- `npm run preview` - Preview production build\n- `npm run check` - Type check the codebase\n- `npm run format` - Format code with Prettier\n\n## Tech Stack\n\n- **Framework**: SvelteKit with Svelte 5\n- **Database**: PostgreSQL with Drizzle ORM\n- **Styling**: Tailwind CSS 4\n- **Authentication**: Custom session-based auth\n- **Deployment**: Cloudflare Pages \u0026 Workers\n\n## Environment Variables\n\nCopy `.env.development` to `.env` for local development:\n\n```bash\ncp .env.development .env\n```\n\nRequired variables:\n- `DATABASE_URL` - PostgreSQL connection string\n- `AUTH_SECRET` - Secret for session encryption\n\n## Database Schema\n\nThe application includes:\n- **Users**: Clients and developers with role-based access\n- **Projects**: Job postings from clients\n- **Proposals**: Bids from developers\n- **Reviews**: Feedback system\n- **Developer Profiles**: Extended developer information\n\n## Deployment\n\n1. Set up a PostgreSQL database (Neon, Supabase, or Railway)\n2. Set environment variables in Cloudflare Pages dashboard\n3. Deploy via Wrangler CLI or GitHub integration\n\nSee [DEPLOYMENT.md](./DEPLOYMENT.md) for detailed instructions.\n\n## Troubleshooting\n\n### Docker Issues\n- Ensure Docker Desktop is running\n- Check ports: `lsof -i :5432` (PostgreSQL should not be in use)\n- View logs: `docker-compose logs postgres`\n\n### Database Issues\n- Reset database: `npm run dev:db:reset`\n- Check connection: `docker-compose exec postgres psql -U postgres -d cleanupmyaislop`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fal3rez%2Fcleanmyaislop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fal3rez%2Fcleanmyaislop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fal3rez%2Fcleanmyaislop/lists"}