A Keystone Next example/starter project for Docker-based deployments.
We do a two stage build to produce an production ready image.
Containers will expect a DATABASE_URL
for the DB server, provisioned elsewhere, and the SESSION_SECRET
.
Images can be pulled from the molomby/keystone-next-starter
repo on Docker Hub.
The app Keystone schema is a mix of the Keystone Next todo and auth example projects. It demos a number of Keystone features, including:
- Some lists to play around with
- Password based authentication
- Stateless sessions
- Initial user creation workflow
- Admin UI
- GraphQL endpoint (
/api/graphql
), inc. GraphiQL (whenNODE_ENV !== 'production'
) - Access control
- Automatic migrations (via. Prisma Migrate)
This codebase can be run locally by cloning it to your dev environment. On MacOS you'd perform the following steps:
# Install postgres (if you don't have it already)
# This will add a DB role matching your OS username
brew install postgresql
# Get the repo
git clone https://github.com/molomby/keystone-next-heroku-starter
cd keystone-next-heroku-starter
# Install node packages
yarn
# Start the app
# A DB will be created automatically and migrated to the latest schema
yarn dev
Then point your browser to localhost:3000.
To build the app into a docker image and run it locally:
# Build the image
docker build --tag keystone-next-starter:latest .
# Before we run the image, lets establish some env vars to pass it
# This DB url maps to the same DB the app will default to if run locally
export DATABASE_URL="postgres://$USER@host.docker.internal/keystone-next-docker-starter"
# A ransom session secret
export SESSION_SECRET=$(head -c40 /dev/urandom | base64 | tr -dc 'A-Za-z0-9' | head -c40)
# Run the image interactively to test, mapping port 3000 to localhost and passing our env vars though
docker run --init --env DATABASE_URL --env SESSION_SECRET --publish 3000:3000 --name my-keystone keystone-next-starter:latest
If you wanted to push the image to a registry, the steps would be similar to these, replacing molomby/keystone-next-starter
with your own repo:
# Add the published tags
docker tag keystone-next-starter:latest molomby/keystone-next-starter:latest
docker tag keystone-next-starter:latest molomby/keystone-next-starter:1.0.0
# Push to docker hub
docker push --all-tags molomby/keystone-next-starter
The first time you run yarn dev
locally Keystone will create a local development database with the initial schema.
To extend this database schema, simply make your changes to the Keystone lists in schema.ts
and re-run yarn dev
.
Keystone will detect these changes, prompt you to create a migration and apply the changes to your local database.
Eg:
✨ There has been a change to your Keystone schema that requires a migration
✔ Name of migration … Adding person.country field
✨ A migration has been created at migrations/20210514023215_adding_person_country_field
✔ Would you like to apply this migration? … yes
✅ The migration has been applied
Your changes will then be reflected in the Admin UI and GraphQL API.
Behind the scenes, this magic is being performed by
Prisma and Prisma Migrate
which generates SQL migration scripts based on your code changes.
You can find these files in the /migrations
directory.
Committing these migration scripts to GitHub will cause the migration to be run when your app is next deployed. Adding your own SQL scripts to the directory will also work, just follow the directory naming convention – migrations are applied based on their order on disk. This can be useful for importing data or DB operations beyond the scope of Keystone.
The ability to add arbitrary SQL migrations lets you seed data into your database somewhat easily.
Create a SQL file with some insert commands and place it in an appropriately named directory within /migrations
.
Data added in this way will be applied to any databases created when a new collaborator clones the repo and first runs yarn dev
.
Having a fake but realistic set of data, automatically inserted when a DB is created, can also be very useful for automated testing.
Keystone is a powerful GraphQL based headless CMS. Written in TypeScript, it has some terrific features out of the box, is easy to extend and a joy to use.
This app is build on an early preview build of Keystone Next. We have some exciting plans for the project, with lots of features and docs rolling out over the next few months, as we move toward production readiness. If you want to know more checkout the (preview) Keystone Next docs, fork us on GitHub or join the KeystoneJS Slack.