{"id":15753822,"url":"https://github.com/flybayer/cincijs-demo","last_synced_at":"2025-03-31T07:42:42.007Z","repository":{"id":86071795,"uuid":"287066508","full_name":"flybayer/cincijs-demo","owner":"flybayer","description":null,"archived":false,"fork":false,"pushed_at":"2020-08-12T16:48:10.000Z","size":226,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-06T12:16:05.690Z","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/flybayer.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}},"created_at":"2020-08-12T16:47:47.000Z","updated_at":"2020-08-12T16:48:13.000Z","dependencies_parsed_at":"2023-04-20T20:31:27.000Z","dependency_job_id":null,"html_url":"https://github.com/flybayer/cincijs-demo","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/flybayer%2Fcincijs-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flybayer%2Fcincijs-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flybayer%2Fcincijs-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flybayer%2Fcincijs-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flybayer","download_url":"https://codeload.github.com/flybayer/cincijs-demo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246436052,"owners_count":20776960,"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":"2024-10-04T08:00:35.442Z","updated_at":"2025-03-31T07:42:41.979Z","avatar_url":"https://github.com/flybayer.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Blitz.js](https://raw.githubusercontent.com/blitz-js/art/master/github-cover-photo.png)](https://blitzjs.com)\n\nThis is a [Blitz.js](https://github.com/blitz-js/blitz) app.\n\n# cincijs\n\n## Getting Started\n\nRun your app in the development mode.\n\n```\nblitz start\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\n## Tests\n\nRuns your tests using Jest.\n\n```\nyarn test\n```\n\nBlitz comes with a test setup using [Jest](https://jestjs.io/) and [react-testing-library](https://testing-library.com/).\n\n## Commands\n\nBlitz comes with a powerful CLI that is designed to make development easy and fast. You can install it with `npm i -g blitz`\n\n```\n  blitz [COMMAND]\n\n  build     Create a production build\n  console   Run the Blitz console REPL\n  db        Run database commands\n  generate  Generate new files for your Blitz project\n  help      display help for blitz\n  start     Start a development server\n  test      Run project tests\n```\n\nYou can read more about it on the [CLI Overview](https://blitzjs.com/docs/cli-overview) documentation.\n\n## What's included?\n\nHere is the structure of your app.\n\n```\ncincijs\n├── app\n│   ├── components\n│   │   └── ErrorBoundary.tsx\n│   ├── layouts\n│   └── pages\n│       ├── _app.tsx\n│       ├── _document.tsx\n│       └── index.tsx\n├── db\n│   ├── migrations\n│   ├── index.ts\n│   └── schema.prisma\n├── integrations\n├── node_modules\n├── public\n│   ├── favicon.ico\n│   └── logo.png\n├── utils\n├── .babelrc.js\n├── .env\n├── .eslintrc.js\n├── .gitignore\n├── .npmrc\n├── .prettierignore\n├── README.md\n├── blitz.config.js\n├── package.json\n├── tsconfig.json\n└── yarn.lock\n```\n\nThese files are:\n\n- The `app/` directory is a container for most of your project. This is where you’ll put any pages or API routes.\n\n- `db`/ is where your database configuration goes. If you’re writing models or checking migrations, this is where to go.\n\n- `node_modules/` is where your “dependencies” are stored. This directory is updated by your package manager, so you don’t have to worry too much about it.\n\n- `public/` is a directory where you will put any static assets. If you have images, files, or videos which you want to use in your app, this is where to put them.\n\n- `utils/` is a good place to put any shared utility files which you might use across different sections of your app.\n\n- `.babelrc.js`, `.env`, etc. (\"dotfiles\") are configuration files for various bits of JavaScript tooling.\n\n- `blitz.config.js` is for advanced custom configuration of Blitz. It extends [`next.config.js`](https://nextjs.org/docs/api-reference/next.config.js/introduction).\n\n- `package.json` contains information about your dependencies and devDependencies. If you’re using a tool like `npm` or `yarn`, you won’t have to worry about this much.\n\n- `tsconfig.json` is our recommended setup for TypeScript.\n\nYou can read more about it in the [File Structure](https://blitzjs.com/docs/file-structure) section of the documentation.\n\n## Learn more\n\nRead the [Blitz.js Documentation](https://blitzjs.com/docs/getting-started) to learn more.\n\n### The Blitz.js Manifesto\n\nRead the [Blitz Manifesto](https://blitzjs.com/docs/manifesto) to learn the Blitz foundational principles.\n\nBlitz is built on Next.js. For more info on this see [Why use Blitz instead of Next.js](https://blitzjs.com/docs/why-blitz)\n\n## Get in touch\n\nThe Blitz community is warm, safe, diverse, inclusive, and fun! Feel free to reach out to us in any of our communication channels.\n\n- [Website](https://blitzjs.com/)\n- [Slack](https://slack.blitzjs.com/)\n- [Report an issue](https://github.com/blitz-js/blitz/issues/new/choose)\n- [Forum discussions](https://github.com/blitz-js/blitz/discussions)\n- [Sponsors and donations](https://github.com/blitz-js/blitz#sponsors-and-donations)\n- [Contributing Guide](https://blitzjs.com/docs/contributing)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflybayer%2Fcincijs-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflybayer%2Fcincijs-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflybayer%2Fcincijs-demo/lists"}