Skip to content

Latest commit

 

History

History
 
 

ux.symfony.com

Source code for ux.symfony.com.

Installation

Source code

Install the project:

git clone [email protected]:symfony/ux
cd ux/ux.symfony.com/

Install the dependencies:

symfony composer install

Services

(optional) Configure Docker to launch Mercure

docker compose up -d

Database

Run database migrations:

symfony console doctrine:migration:migrate

Populate the database:

symfony console app:load-data

Assets

Download the importmap packages locally:

symfony console importmap:install

Compile the Sass files:

symfony console sass:build

# (optional) Add the --watch flag to automatically recompile the Sass files on change.
symfony console sass:build --watch

Local server

Start the local web server (in background):

symfony server:start -d

Testing

symfony php bin/phpunit