{"id":21916897,"url":"https://github.com/zenoo/fullstack-typescript-monorepo","last_synced_at":"2025-04-19T03:20:16.574Z","repository":{"id":64987852,"uuid":"579691205","full_name":"Zenoo/fullstack-typescript-monorepo","owner":"Zenoo","description":"FullStack Typescript Monorepo, using NPM workspaces. Prisma + NodeJS + React + MUI","archived":false,"fork":false,"pushed_at":"2024-09-21T07:32:42.000Z","size":115251,"stargazers_count":6,"open_issues_count":4,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-29T06:43:19.634Z","etag":null,"topics":["fullstack","monorepo","mui","nodejs","npm-workspaces","prisma","react","typescript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/Zenoo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-18T14:58:47.000Z","updated_at":"2025-02-17T11:43:07.000Z","dependencies_parsed_at":"2024-01-10T10:55:18.882Z","dependency_job_id":"85287a3e-da8e-4dc1-a6a8-acb4c30625aa","html_url":"https://github.com/Zenoo/fullstack-typescript-monorepo","commit_stats":null,"previous_names":[],"tags_count":16,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zenoo%2Ffullstack-typescript-monorepo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zenoo%2Ffullstack-typescript-monorepo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zenoo%2Ffullstack-typescript-monorepo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zenoo%2Ffullstack-typescript-monorepo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Zenoo","download_url":"https://codeload.github.com/Zenoo/fullstack-typescript-monorepo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249598450,"owners_count":21297464,"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":["fullstack","monorepo","mui","nodejs","npm-workspaces","prisma","react","typescript"],"created_at":"2024-11-28T19:21:30.261Z","updated_at":"2025-04-19T03:20:16.550Z","avatar_url":"https://github.com/Zenoo.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Backend\n\n\u003e Made with [Node.js](https://nodejs.org/en/), [Express](https://expressjs.com/), [Prisma](https://www.prisma.io/), written in [Typescript](https://www.typescriptlang.org/).\n\n## Frontend\n\n\u003e Made with [MUI's](https://mui.com/) components, [React](https://reactjs.org/) and [create-react-app](https://facebook.github.io/create-react-app/).\n\n## How to use\n\n- Create a new project from this template\n\n![](https://i.imgur.com/Hc0JsXs.png)\n\n- Install a local postgres database\n\n- Copy `.env.sample` to `.env` and adapt the variables\n\n- Install dependencies: `npm i` (This should also setup your database from the `schema.prisma` file and the migrations)\n\n- Start both the server and the client with `npm run dev`\n\n### How to sync your database with your new Prisma schema\n\n- Run `npm run db:sync:dev`\n\n### How to seed your database\n\n- Edit `server/prisma/seed.ts`\n\n- Run `npm run db:seed`\n\n## Deployment\n\n*This project should deploy successfully as-is on Heroku*\n\n- Set the environment variables\n\n- Install dependencies: `npm ci` (This should also setup your database from the `schema.prisma` file and the migrations)\n\n- Start the server with `npm run start`\n\n## Contributing\n\n- Fork the project\n\n- Make sure your NodeJS and npm versions are up to date\n\n- Copy `.env.sample` to `.env` and adapt the database URL\n\n- Install dependencies: `npm i` (This should also setup your database from the `schema.prisma` file and the migrations)\n\n- Start both the server and the client with `npm run dev`\n\n- Commit and push your changes\n\n- Create a pull request\n\n## Documentation\n\nEvery\n\n- Component\n- Method\n- Callback\n\nShould have a corresponding documentation.\n\n\n## File Structure\n\n```\n├── client\n│\t├── build    \t\t\t# Compiled frontend\n│\t├── public\n│\t│\t├── i18n\t\t\t# Folder containing all the translations\n│\t│\t└── ...      \t\t# Any other static file\n│\t└── src\n│\t\t├── components \t\t# Reusable components\n│\t\t├── hooks     \t\t# React hooks\n│\t\t├── layouts    \t\t# Layouts\n│\t\t├── theme     \t\t# Theme variables\n│\t\t├── utils       \t# Utility functions\n│\t\t└── views       \t# Views\n├── core \t\t\t\t\t# Shared ressourcs for both front and back end\n│   ├── src              \n├── prisma \t\t\t\t\t# Prisma types definitions for both front and back end\n│   ├── src              \n└── server \t\t\t\t\t# Back end\n    ├── prisma              # DB\n\t└── src\n\t    ├── controllers     # Controllers\n \t  \t├── utils       \t# Utility functions\n\t    └── ...\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzenoo%2Ffullstack-typescript-monorepo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzenoo%2Ffullstack-typescript-monorepo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzenoo%2Ffullstack-typescript-monorepo/lists"}