{"id":19337833,"url":"https://github.com/commencis/cli","last_synced_at":"2025-04-23T01:31:07.303Z","repository":{"id":260508767,"uuid":"881389207","full_name":"Commencis/cli","owner":"Commencis","description":"Commencis CLI - streamline the development workflow","archived":false,"fork":false,"pushed_at":"2025-04-21T10:06:51.000Z","size":1437,"stargazers_count":9,"open_issues_count":2,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-04-21T11:27:27.445Z","etag":null,"topics":["boilerplate","cli","generator","react-vite","starter","template","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Commencis.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,"zenodo":null}},"created_at":"2024-10-31T13:31:01.000Z","updated_at":"2025-04-21T10:06:52.000Z","dependencies_parsed_at":"2024-12-13T15:40:33.900Z","dependency_job_id":"34071144-4166-4863-808d-f58551cb30b7","html_url":"https://github.com/Commencis/cli","commit_stats":null,"previous_names":["commencis/cli"],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Commencis%2Fcli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Commencis%2Fcli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Commencis%2Fcli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Commencis%2Fcli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Commencis","download_url":"https://codeload.github.com/Commencis/cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250352221,"owners_count":21416458,"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":["boilerplate","cli","generator","react-vite","starter","template","typescript"],"created_at":"2024-11-10T03:15:35.376Z","updated_at":"2025-04-23T01:31:07.296Z","avatar_url":"https://github.com/Commencis.png","language":"TypeScript","readme":"\u003cpicture\u003e\n  \u003csource media=\"(max-width: 400px)\" srcset=\"./assets/commencis-cli-logo-mobile.png\"\u003e\n  \u003cimg src=\"./assets/commencis-cli-logo.png\" alt=\"Commencis CLI Logo\"\u003e\n\u003c/picture\u003e\n\n\u003ch1 align=\"center\"\u003e\n  Commencis CLI\n\n[![License: Apache](https://img.shields.io/badge/License-Apache2.0-300E77.svg)](LICENSE)\n\n\u003c/h1\u003e\n\n\u003e [!WARNING]\n\u003e The Commencis CLI is actively under development. Further enhancements are on the way, and feedback and contributions are welcome!\n\nThe Commencis CLI serves as a comprehensive command-line interface for effortlessly creating and managing projects.\n\nThis tool generates carefully crafted starter templates designed by [Commencis](https://www.commencis.com/) to meet the needs of modern applications. With a focus on best practices and clean code, the Commencis CLI empowers developers to kickstart projects with confidence.\n\n## Usage:\n\nBefore you start, ensure you are in the directory where you want to create your project.\n\n### Interactive Mode\n\nTo create a new project interactively, run:\n\n```bash\nnpx @commencis/cli create\n```\n\n### Non-Interactive Mode\n\nTo create a new project without prompts, use the following command:\n\n```bash\nnpx @commencis/cli create [project-name] [options]\n```\n\nFor example, to create a project named “my-app” using the React Vite template, you would run:\n\n```bash\nnpx @commencis/cli create my-app --template react-vite\n```\n\n## Options\n\n- `--template \u003ctemplate-name\u003e`: Specify the template you want to use (e.g., react-vite, etc.).\n\n## Important Notes\n\n\u003e [!WARNING]\n\u003e Don’t forget to initialize git in your project:\n\u003e\n\u003e `git init`\n\n\u003e [!TIP]\n\u003e After creating your project, run the following command to install dependencies:\n\u003e\n\u003e `pnpm install`\n\n## For Contributors:\n\n### Prerequisites\n\n#### Node.js\n\nBefore you begin, ensure you have `node: \u003e= 22.14` installed on your system.\n\n#### pnpm\n\nThis project uses `pnpm` as the package manager. You can install it either by activating with `corepack` which is the recommended way:\n\n```bash\ncorepack prepare pnpm@latest --activate\ncorepack enable pnpm\n```\n\nor install globally on your system with npm.\n\n```bash\nnpm install -g pnpm\n```\n\n### Installation\n\nRun the following command to install project dependencies:\n\n```bash\npnpm install\n```\n\n### Development\n\nYou can run the following command to start development environment:\n\n```bash\npnpm run dev\n```\n\n## Contribution\n\nWe welcome contributions to improve this project. Feel free to open issues or pull requests to suggest enhancements or report any issues.\n\n\u003e [!IMPORTANT]\n\u003e For developers contributing to this project, it's important to familiarize yourself with these tools, as they are integral to the workflow and code quality standards.\n\n## License\n\nThis project is licensed under the [Apache License 2.0](https://opensource.org/licenses/Apache-2.0) - see the [LICENSE](./LICENSE) file for details.\n\n© [Commencis](https://www.commencis.com/), 2025. All rights reserved.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcommencis%2Fcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcommencis%2Fcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcommencis%2Fcli/lists"}