Return to Installation main page
First, you have to configure your env variables by creating the .env.local file.
touch .env.local
There's no need to configure anything to run the application. If you have installed Symfony binary, run this command:
symfony serveThen access the application in your browser at the given URL (https://localhost:8000 by default).
If you don't have the Symfony binary installed, run php -S localhost:8000 -t public/
to use the built-in PHP web server or configure a web server like Nginx or
Apache to run the application.