This repository contains the code responsible for https://plugins.cakephp.org
You need DDEV installed and configured on your machine.
After that start the app via ddev start
Next you need to apply migrations to create the database tables:
ddev exec bin/cake migrations migrate
ddev exec bin/cake migrations migrate -p TagsAfter that you can perform a fresh sync via
ddev exec bin/cake sync_packagesWith that you should now see what is currently on the production site.
If you want to clean up package data, you can run the following command:
ddev exec bin/cake cleanIf you want to start with a fresh DB, you can run the following command:
ddev exec -s db mysql -uroot -proot -e "DROP DATABASE IF EXISTS db; CREATE DATABASE db;"Note
Don't forget to apply migrations again.