{"id":25519566,"url":"https://github.com/imbios/improved-octo-fortnight","last_synced_at":"2026-04-10T07:14:29.482Z","repository":{"id":277316411,"uuid":"931371274","full_name":"ImBIOS/improved-octo-fortnight","owner":"ImBIOS","description":"A monorepo technical test project using Turborepo, featuring a full-stack application with Express.js backend and Next.js frontend.","archived":false,"fork":false,"pushed_at":"2025-02-12T06:52:41.000Z","size":177,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-11T01:57:18.216Z","etag":null,"topics":["appdir","expressjs","firebase","hacktoberfest","monorepo","mui","nextjs","turborepo"],"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/ImBIOS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":["ImBIOS"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2025-02-12T06:52:36.000Z","updated_at":"2025-02-12T06:53:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"95681368-ef19-450c-b95c-d82e9e2d48d4","html_url":"https://github.com/ImBIOS/improved-octo-fortnight","commit_stats":null,"previous_names":["imbios/improved-octo-fortnight"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ImBIOS/improved-octo-fortnight","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImBIOS%2Fimproved-octo-fortnight","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImBIOS%2Fimproved-octo-fortnight/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImBIOS%2Fimproved-octo-fortnight/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImBIOS%2Fimproved-octo-fortnight/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ImBIOS","download_url":"https://codeload.github.com/ImBIOS/improved-octo-fortnight/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImBIOS%2Fimproved-octo-fortnight/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265327802,"owners_count":23747783,"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","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":["appdir","expressjs","firebase","hacktoberfest","monorepo","mui","nextjs","turborepo"],"created_at":"2025-02-19T17:20:00.614Z","updated_at":"2026-04-10T07:14:29.445Z","avatar_url":"https://github.com/ImBIOS.png","language":"TypeScript","funding_links":["https://github.com/sponsors/ImBIOS"],"categories":[],"sub_categories":[],"readme":"# improved-octo-fortnight\n\nA monorepo technical test project using Turborepo, featuring a full-stack application with Express.js backend and Next.js frontend.\n\n## Project Structure\n\nThe project uses [Turborepo](https://turborepo.org) and contains:\n\n```text\n.github\n  └─ workflows\n        └─ CI with pnpm cache setup\n.vscode\n  └─ Recommended extensions and settings for VSCode users\napps\n  ├─ backend-repo\n  |   ├─ Express.js\n  |   ├─ Firebase Admin SDK\n  |   ├─ Jest for testing\n  |   └─ TypeScript\n  └─ frontend-repo\n      ├─ Next.js\n      ├─ React\n      ├─ MUI Theme Customization\n      ├─ Firebase Authentication\n      ├─ Redux Store\n      └─ Jest for testing\npackages\n  └─ types\n      └─ Shared TypeScript types for API responses and user models\n```\n\n## Key Features\n\n### Backend (`apps/backend-repo`)\n\n- Express.js server with TypeScript\n- Firebase Admin SDK integration\n- Authentication middleware\n- User routes and controllers\n- Integration and unit tests with Jest\n- Clean architecture with separate controllers, routes, and repositories\n\n### Frontend (`apps/frontend-repo`)\n\n- Next.js application\n- Material-UI with custom theme\n- Firebase Authentication\n- Redux store management\n- Custom hooks for user session and data\n- Component-based architecture (atoms/molecules)\n- Unit tests with Jest and Snapshots\n- Service worker for auth handling\n\n### Shared Types (`packages/types`)\n\n- Common TypeScript interfaces\n- API response types\n- User model definitions\n\n### Shared Utils (`packages/utils`)\n\n- Common utility functions\n- Err\n\n## Installation\n\n### Prerequisites\n\n- Node.js (version specified in `.node-version`)\n- pnpm package manager\n\n### Setup\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/ImBIOS/improved-octo-fortnight.git\ncd improved-octo-fortnight\n```\n\n2. Install dependencies:\n\n```bash\npnpm install\n```\n\n3. Set up environment variables:\n\n```bash\n# For backend\ncp apps/backend-repo/.env.example apps/backend-repo/.env\n# For frontend\ncp apps/frontend-repo/.env.example apps/frontend-repo/.env\n```\n\n4. Configure Firebase:\n   - Create a Firebase project\n   - Set up Firebase Admin SDK for backend\n   - Configure Firebase Authentication for frontend\n   - Update Firebase configuration in respective .env files\n\n### Development\n\n1. Start the backend server:\n\n```bash\ncd apps/backend-repo\npnpm dev\n```\n\n2. Start the frontend application:\n\n```bash\ncd apps/frontend-repo\npnpm dev\n```\n\n### Testing\n\nThe project includes comprehensive test suites for both backend and frontend:\n\n```bash\n# Run backend tests\ncd apps/backend-repo\npnpm test\n\n# Run frontend tests\ncd apps/frontend-repo\npnpm test\n```\n\n## Deployment\n\n### Backend Deployment\n\n1. Build the backend:\n\n```bash\ncd apps/backend-repo\npnpm build\n```\n\n2. Deploy to your preferred hosting service (e.g., Google Cloud Run, Heroku)\n3. Set up environment variables in your hosting platform\n\n### Frontend Deployment\n\n1. Build the frontend:\n\n```bash\ncd apps/frontend-repo\npnpm build\n```\n\n2. Deploy to your preferred hosting service (e.g., Vercel, Netlify)\n3. Configure environment variables in your hosting platform\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimbios%2Fimproved-octo-fortnight","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimbios%2Fimproved-octo-fortnight","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimbios%2Fimproved-octo-fortnight/lists"}