Reference
Contributing
Nextkit is open source and built in the open. Bug reports, ideas, and pull requests are all welcome.
The repository
Everything lives in a single Turborepo on GitHub: MaarcusRenieroL/next-cli. The CLI is in packages/cli, the marketing site in apps/web, and these docs in apps/docs.
Local setup
Clone the repo, install dependencies, and start the dev tasks:
$ git clone https://github.com/MaarcusRenieroL/next-cli.git$ cd next-cli$ pnpm install$ pnpm devTo work on just one part of the monorepo, use the filtered scripts — for example pnpm dev:web for the site or pnpm dev:cli for the CLI.
Running these docs
From the repo root, run
pnpm --filter docs dev to start the documentation app on port 3333.Reporting issues
Found a bug or have a feature request? Open an issue on the issue tracker. Include your OS, Node version, package manager, and the options you selected so it's easy to reproduce.
Pull requests
- Fork the repo and create a branch for your change.
- Keep changes focused and match the existing code style.
- For a new integration, add an installer under
packages/cli/src/installersand wire it into the prompts. - Open a PR with a clear description of what and why.