{"id":30618036,"url":"https://github.com/patrickhulce/hulkastorus-claude","last_synced_at":"2025-08-30T11:07:32.697Z","repository":{"id":309422117,"uuid":"1036148513","full_name":"patrickhulce/hulkastorus-claude","owner":"patrickhulce","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-11T19:38:11.000Z","size":133,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-11T21:10:50.162Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/patrickhulce.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-08-11T16:18:39.000Z","updated_at":"2025-08-11T19:38:14.000Z","dependencies_parsed_at":"2025-08-11T21:21:36.677Z","dependency_job_id":null,"html_url":"https://github.com/patrickhulce/hulkastorus-claude","commit_stats":null,"previous_names":["patrickhulce/hulkastorus-claude"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/patrickhulce/hulkastorus-claude","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickhulce%2Fhulkastorus-claude","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickhulce%2Fhulkastorus-claude/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickhulce%2Fhulkastorus-claude/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickhulce%2Fhulkastorus-claude/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patrickhulce","download_url":"https://codeload.github.com/patrickhulce/hulkastorus-claude/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickhulce%2Fhulkastorus-claude/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272839740,"owners_count":25001869,"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-30T02:00:09.474Z","response_time":77,"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-30T11:07:30.048Z","updated_at":"2025-08-30T11:07:32.658Z","avatar_url":"https://github.com/patrickhulce.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hulkastorus\n\nDeveloper-focused cloud storage service that turns a drag-and-drop or single `curl` command into an immediately usable public URL.\n\nThis is a [Next.js](https://nextjs.org) project implementing the architecture defined in [ARCHITECTURE.md](./ARCHITECTURE.md).\n\n## Features\n\n- **NextAuth Authentication** - JWT-based auth with protected routes\n- **Cloudflare R2 Integration** - S3-compatible object storage with mock server for testing\n- **Prisma ORM** - Type-safe database operations with PostgreSQL\n- **Comprehensive Testing** - Unit tests, E2E tests with Playwright, and mock services\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18+\n- PostgreSQL database (or use Neon)\n- Cloudflare R2 account (optional for development)\n\n### Environment Setup\n\n1. Copy the environment template:\n\n```bash\ncp .env.example .env.local\n```\n\n2. Configure your environment variables:\n\n```bash\n# Database\nDATABASE_URL=\"postgresql://username:password@localhost:5432/hulkastorus\"\n\n# NextAuth\nNEXTAUTH_SECRET=\"your-secret-key-here\"\nNEXTAUTH_URL=\"http://localhost:3000\"\n\n# Cloudflare R2 (optional for development)\nR2_ACCOUNT_ID=\"your-r2-account-id\"\nR2_ACCESS_KEY_ID=\"your-r2-access-key-id\"\nR2_SECRET_ACCESS_KEY=\"your-r2-secret-access-key\"\nR2_BUCKET_NAME=\"hulkastorus-ugc\"\n```\n\n### Development\n\n1. Install dependencies:\n\n```bash\npnpm install\n```\n\n2. Set up the database:\n\n```bash\nnpx prisma migrate dev\n```\n\n3. Start the development server:\n\n```bash\npnpm dev\n```\n\n4. Open [http://localhost:3010](http://localhost:3010) to view the application.\n\n## Testing\n\n### Run All Tests\n\n```bash\npnpm test\n```\n\n### Test Categories\n\n```bash\n# Unit tests only\npnpm run test:unit\n\n# E2E tests with Playwright\nnpx playwright test\n\n# R2 integration tests\nnpx playwright test tests/e2e/r2-integration.test.ts\n\n# Lint and format\npnpm run test:lint\npnpm run test:format\n```\n\n### R2 Testing\n\nThe project includes a mock R2 server for testing S3-compatible operations without requiring actual Cloudflare R2 credentials. See [docs/R2_TESTING.md](./docs/R2_TESTING.md) for detailed testing instructions.\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\nCheck out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickhulce%2Fhulkastorus-claude","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatrickhulce%2Fhulkastorus-claude","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickhulce%2Fhulkastorus-claude/lists"}