Skip to content

Latest commit

 

History

History
 
 

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

KeystoneJS Demo Projects

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 List
  • blog: A starting point for a blog including a WYSIWYG editor
  • meetup: A local community event website with speakers and sponsors

Requirements

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.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