Cookies ahead

Our support chat tool "Intercom" would like to collect some more data on you. See the related link for more details.

Docs

Install Kirby CMS locally

Reviewed

Markdown ↓

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

Written by a human. Review, grammar checks and typo fixes by AI.

AI use & editorial processEdit on GitHub ↗