git clone ...
cd ...
composer install
configure your .env (DATABASE_URL="mysql://db_user:db_password@127.0.0.1:3306/db_name")
php bin/console make:migration
php bin/console doctrine:migrations:migrate
php bin/console doctrine:fixtures:load
yarn encore dev
php -S 127.0.0.1:8000 -t publiccomposer create-project symfony/website-skeleton crud_articlephp bin/console make:entityphp bin/console make:crudmysql -u root
create database databasename
GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' IDENTIFIED BY 'password';
GRANT SELECT ON *.* TO 'username'@'localhost';DATABASE_URL="mysql://db_user:db_password@127.0.0.1:3306/db_name"php bin/console make:migrationphp bin/console doctrine:migrations:migratephp bin/console debug:routerphp -S 127.0.0.1:8000 -t public