File tree Expand file tree Collapse file tree 1 file changed +19
-9
lines changed
Expand file tree Collapse file tree 1 file changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -9,32 +9,42 @@ Source code for [ux.symfony.com](https://ux.symfony.com).
991 . Install the project:
1010 ``` bash
1111 git clone
[email protected] :symfony/ux
12- cd ux/ux.symfony.com
12+ cd ux/ux.symfony.com/
1313 ```
14+
14152. Install the dependencies:
1516 ` ` ` bash
16- composer install
17+ symfony composer install
1718 ` ` `
18- 3. (optional) Configure docker:
19+
20+ 3. (optional) Configure Docker:
1921 ` ` ` bash
2022 docker compose up -d
2123 ` ` `
22- 4. Populate the database:
24+
25+ 5. Run database migrations:
26+ ` ` ` bash
27+ symfony console doctrine:migration:migrate
28+ ` ` `
29+
30+ 6. Populate the database:
2331 ` ` ` bash
2432 symfony console app:load-data
2533 ` ` `
26- 5. Start the web server:
34+
35+ 7. Compile the Sass files:
2736 ` ` ` bash
28- symfony server:start -d
37+ symfony console sass:build --watch
2938 ` ` `
3039
31- 6. Compile the Sass files :
40+ 8. Start the web server :
3241 ` ` ` bash
33- php bin/console sass:build --watch
42+ symfony server:start -d
3443 ` ` `
3544
45+
3646# ## Running the Test Suite
3747
3848` ` ` bash
39- vendor/ bin/phpunit
49+ symfony php bin/phpunit
4050` ` `
You can’t perform that action at this time.
0 commit comments