This guide assumes you know how to use the command-line and that your machine has php 7.4 and mysql 8 installed.
cd
to itcomposer install
(at the end it will ask for the database configuration parameters)composer install
fails with version issues, you may need to run composer self-update --1
to downgrade to composer version 1php bin/console doctrine:database:create
to create the database.php bin/console doctrine:schema:create
to create the database schema.php bin/console app:import:std path-to-marvelsdb-json-data/
pointing to where you cloned the json data (can be a relative path)php bin/console server:run
Additional useful commands.
composer install
to rebuild minified JS files after making changes to the raw files.php bin/console doctrine:schema:update --dump-sql
to view database schema changes.php bin/console doctrine:schema:update --force
to execute database schema changes.