Install REDAXO CMS with DDEV
REDAXO is an open source content managment system devleoped by the German web agency Yakamara.
REDAXO is for people who love the flexibility of a content managment system; you have easy control of your code and also of the content that you want to create.
In general, REDAXO setup is exactly the same as any other generic PHP project
- Clone the REDAXO repository:
git clone https://github.com/redaxo/redaxo.git
- Use
ddev config --project-type=php --webserver-type=apache-fpm
to configure the project. REDAXO expects an apache webserver;php
is the default/generic project type.
ddev start
- Visit the selected URL (like
https://redaxo.ddev.site
) to choose language, license terms, etc. - Configure site and database settings. (Database name is
db
, mysql host isdb
, database username isdb
, and password isdb
) - Complete setup
- To see complete ddev project information, use
ddev describe
.