Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 665 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 665 Bytes

Roadiz CMS pack for Symfony

This is a Flex pack to install Roadiz CMS.

Installation instructions are available in the Roadiz documentation.

If you want to start a new headless project with Roadiz, check https://github.com/roadiz/skeleton.

mkdir -p ./var/secret
mkdir -p ./var/export
mkdir -p ./public/assets
mkdir -p ./public/files

bin/console doctrine:migrations:migrate
bin/console themes:assets:install Rozier
bin/console install

Update your composer.json to autoload themes and generated entities

{
    "autoload": {
        "psr-4": {
            "Themes\\": "themes/"
        }
    }
}