https://github.com/keystonejs/create-keystone-app
CLI app that makes it easy to get started with Keystone
https://github.com/keystonejs/create-keystone-app
Last synced: 10 months ago
JSON representation
CLI app that makes it easy to get started with Keystone
- Host: GitHub
- URL: https://github.com/keystonejs/create-keystone-app
- Owner: keystonejs
- License: mit
- Archived: true
- Created: 2021-02-23T01:08:05.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-08-06T07:14:49.000Z (over 1 year ago)
- Last Synced: 2025-06-09T10:08:50.599Z (11 months ago)
- Language: TypeScript
- Homepage: https://keystonejs.com/tutorials/getting-started-with-create-keystone-next-app
- Size: 3.52 MB
- Stars: 40
- Watchers: 13
- Forks: 10
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-projects - create-keystone-app - CLI app that makes it easy to get started with Keystone ⭐40 `TypeScript` (📦 Legacy & Inactive Projects)
README
# create-keystone-app
This starter-kit will get you up and running with a new [Keystone](https://keystonejs.com) project in just a few minutes. Run one of the following commands to get started.
```
yarn create keystone-app
```
or
```
npm init keystone-app
```
or
```
npx create-keystone-app
```
See the [Keystone website](https://keystonejs.com/docs/walkthroughs/getting-started-with-create-keystone-app) for more details on how to get started with Keystone.
## FAQ
### Why is this in a different repository to the rest of Keystone
We want to be able to have tests that create an app with `create-keystone-app` and then test to ensure it starts. This wouldn't be possible in the main Keystone repo since it relies on the rest of the packages being published (unless we published the packages to a local registry like Verdaccio but that would still add complexity and the chance for something to go wrong compared to the proper published versions to npm).