create symfony demo app

Creating a Symfony Demo App

To create a Symfony demo app, you can follow these steps:

  1. Install Symfony using Composer by running the following command in your terminal: composer create-project symfony/website-skeleton my-demo-app

  2. Change into the project directory: cd my-demo-app

  3. Start the Symfony development server: symfony server:start

  4. Open your web browser and visit http://localhost:8000 to see the Symfony demo app in action.

Please note that these steps assume you have Composer and Symfony CLI installed on your system. If not, you will need to install them before proceeding.

Source: - Symfony Documentation

Let me know if you need further assistance!