Install Kirby CMS locally

How to install Kirby CMS on your local computer for development.

Get ready

If you already have a local Kirby project, continue with deployment options.

Kirby starter kits

Kirby has different starting points for new projects:

Our instructions will use Plainkit. Composerkit is the future (we think).

# 1. Create a local Kirby project folder with Composer:
$ composer create-project getkirby/plainkit {{app-env-id}}
shell

B: Install Kirby locally without Composer

# Make a directory and move into it
$ mkdir {{app-env-id}} && cd {{app-env-id}}

# Get the plainkit
$ wget https://github.com/getkirby/plainkit/archive/main.zip

# Unzip the plainkit
$ unzip main.zip

# Move all contents from the folder one level up
$ mv plainkit-main/* .

# Remove artifacts
$ rm -rf main.zip plainkit-main
shell

Found a tpyo?Edit