Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 827 Bytes

File metadata and controls

27 lines (17 loc) · 827 Bytes

Installation

Return to Installation main page

Usage

Local runtime environment

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 serve

Then 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.