{"id":26277390,"url":"https://github.com/e-roy/soil-turborepo","last_synced_at":"2025-05-06T22:23:57.664Z","repository":{"id":52379381,"uuid":"520940721","full_name":"e-roy/soil-turborepo","owner":"e-roy","description":null,"archived":false,"fork":false,"pushed_at":"2022-12-13T18:36:26.000Z","size":6115,"stargazers_count":0,"open_issues_count":2,"forks_count":11,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-31T03:32:18.515Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Soil-labs/eden-app-2-FrontEnd","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/e-roy.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}},"created_at":"2022-08-03T15:43:42.000Z","updated_at":"2022-08-24T14:23:06.000Z","dependencies_parsed_at":"2022-12-13T22:30:12.245Z","dependency_job_id":null,"html_url":"https://github.com/e-roy/soil-turborepo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-roy%2Fsoil-turborepo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-roy%2Fsoil-turborepo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-roy%2Fsoil-turborepo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e-roy%2Fsoil-turborepo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/e-roy","download_url":"https://codeload.github.com/e-roy/soil-turborepo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252777564,"owners_count":21802615,"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":[],"created_at":"2025-03-14T12:16:55.178Z","updated_at":"2025-05-06T22:23:57.640Z","avatar_url":"https://github.com/e-roy.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Soil Turborepo\n\npublic builds of both environments can be found at:\n\n[Webapp](https://eden-foundation2.vercel.app/)\n\n[Storybook](https://eden-foundation-storybook.vercel.app/)\n\n## For Development\n\nFork this repo.\n\nInstall packages:\n\n```\nyarn\n```\n\nTo develop the front-end app and packages, run the following command:\n\n```\nyarn dev\n```\n\nTo develop the storybook app and packages, run the following command:\n\n```\nyarn storybook\n```\n\nDuring development, you may get a lot of prettier errors when doing something like a copy and paste. To clean up prettier errors, run:\n\n```\nyarn format\n```\n\n## Making a PR\n\nCreate your own branch using `git checkout -b your_branch_name`. Remember to use a branch name that describes WHAT you're doing/fixing. Start branch name with\n\n- feat: A new feature\n- fix: A bug fix\n- docs: Changes to documentation\n- style: Formatting, missing semi colons, etc; no code change\n- refactor: Refactoring production code\n- test: Adding tests, refactoring test; no production code change\n- chore: Updating build tasks, package manager configs, etc; no production code change\n\nBefore submitting your PR, be sure to test and lint for errors by running:\n\n```\nyarn test\n```\n\nand then\n\n```\nyarn lint\n```\n\nYou can also test building the app and storybook locally to confirm no errors\n\nFor the front-end app, run:\n\n```\nyarn build\n```\n\nFor storybook, run:\n\n```\nyarn build-storybook\n```\n\n## What's inside?\n\nThis turborepo uses [Yarn](https://classic.yarnpkg.com/lang/en/) as a package manager. It includes the following packages/apps:\n\n### Apps and Packages\n\n- `storybook`: a [storybook](https://storybook.js.org/) app\n- `web`: another [Next.js](https://nextjs.org) app\n- `ui`: a stub React component library shared by both `web` and `storybook` applications\n- `config` configurations (includes `eslint-preset-js` , `jest-preset-js` , `postcss.config.js` and `tailwind.config.js`)\n- `tsconfig`: `tsconfig.json` is used throughout the monorepo\n\nEach package/app is 100% [TypeScript](https://www.typescriptlang.org/).\n\n### Utilities\n\nThis turborepo has some additional tools already setup for you:\n\n- [TypeScript](https://www.typescriptlang.org/) for static type checking\n- [ESLint](https://eslint.org/) for code linting\n- [Prettier](https://prettier.io) for code formatting\n\n### Remote Caching\n\nTurborepo can use a technique known as [Remote Caching](https://turborepo.org/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.\n\nBy default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands:\n\n```\nnpx turbo login\n```\n\nThis will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).\n\nNext, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo:\n\n```\nnpx turbo link\n```\n\n## Useful Links\n\nLearn more about the power of Turborepo:\n\n- [Pipelines](https://turborepo.org/docs/core-concepts/pipelines)\n- [Caching](https://turborepo.org/docs/core-concepts/caching)\n- [Remote Caching](https://turborepo.org/docs/core-concepts/remote-caching)\n- [Scoped Tasks](https://turborepo.org/docs/core-concepts/scopes)\n- [Configuration Options](https://turborepo.org/docs/reference/configuration)\n- [CLI Usage](https://turborepo.org/docs/reference/command-line-reference)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe-roy%2Fsoil-turborepo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fe-roy%2Fsoil-turborepo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe-roy%2Fsoil-turborepo/lists"}