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).
9
9
1 . Install the project:
10
10
``` bash
11
11
git clone
[email protected] :symfony/ux
12
- cd ux/ux.symfony.com
12
+ cd ux/ux.symfony.com/
13
13
```
14
+
14
15
2. Install the dependencies:
15
16
` ` ` bash
16
- composer install
17
+ symfony composer install
17
18
` ` `
18
- 3. (optional) Configure docker:
19
+
20
+ 3. (optional) Configure Docker:
19
21
` ` ` bash
20
22
docker compose up -d
21
23
` ` `
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:
23
31
` ` ` bash
24
32
symfony console app:load-data
25
33
` ` `
26
- 5. Start the web server:
34
+
35
+ 7. Compile the Sass files:
27
36
` ` ` bash
28
- symfony server:start -d
37
+ symfony console sass:build --watch
29
38
` ` `
30
39
31
- 6. Compile the Sass files :
40
+ 8. Start the web server :
32
41
` ` ` bash
33
- php bin/console sass:build --watch
42
+ symfony server:start -d
34
43
` ` `
35
44
45
+
36
46
# ## Running the Test Suite
37
47
38
48
` ` ` bash
39
- vendor/ bin/phpunit
49
+ symfony php bin/phpunit
40
50
` ` `
You can’t perform that action at this time.
0 commit comments