Installing latest SilverStripe on DDEV

Hi to all,
Iam new to SilverStripe and have simple question. Is there any walktrough to install SilverStripe on DDEV?

DDEV

And also is there any possibilities to include SilverStripe as one of possibilities as default package cause for now here is the list of only supported: [backdrop, drupal6, drupal7, drupal8, drupal9, laravel, magento, magento2, php, shopware6, typo3, wordpres
s]

Thanks

I was able to get this working, it ended up being pretty straightforward.

ddev config --docroot=public
Then I ran:
ddev start
Then I imported the db normally.
I had to update the .env file:

# Generated by SilverStripe Installer
SS_DATABASE_CLASS="MySQLPDODatabase"
SS_ENVIRONMENT_TYPE="dev"
SS_DEFAULT_ADMIN_USERNAME="admin"
SS_DEFAULT_ADMIN_PASSWORD="dev"
# For ddev environment
SS_BASE_URL="http://projectname.ddev.site"
SS_DATABASE_SERVER="db"
SS_DATABASE_NAME="db"
SS_DATABASE_USERNAME="db"
SS_DATABASE_PASSWORD="db"

A bit late, but I’ve been using DDEV myself as well, and it may be of help to you:

https://firesphere.dev/articles/ddevelopment-environment/
and