These projects are designed to show off different aspects of KeystoneJS features at a range of complexities (from a simple Todo App to a complex Meetup Site).
todo
: A Todo app showcasing the AdminUI and how to create a minimal Listblog
: A starting point for a blog including a WYSIWYG editormeetup
: A local community event website with speakers and sponsors
Minimum requirements for the Demo Projects:
Download a copy of the Keystone 5 repo, and check out the latest release:
git clone https://github.com/keystonejs/keystone-5.git
cd keystone-5
git checkout $(git describe --tags $(git rev-list --tags --max-count=1))
yarn
To run the default demo project (todo
):
yarn dev
To run a specific demo project (eg; blog
):
yarn demo blog dev
To create & start a production build, use the build
command followed by start
:
yarn demo blog build
yarn demo blog start