Skip to content

Commit 7d2b92c

Browse files
authored
Update README.md
1 parent ce1777a commit 7d2b92c

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Bolt 4 standard project skeleton
22
================================
33

4-
Set up a new Bolt 4 project, using the following command:
4+
Set up a new Bolt 4 project, using the following command, replacing `project` with your deisred project's name.
55

66
```bash
7-
composer create-project bolt/standard-project project -s dev
7+
composer create-project bolt/standard-project project
88
```
99

1010
Navigate into the newly created folder, and configure the database in `.env`:
@@ -17,21 +17,28 @@ DATABASE_URL=sqlite:///%kernel.project_dir%/var/data/bolt.sqlite
1717
DATABASE_URL=mysql://root:"root%1"@127.0.0.1:3306/four
1818
```
1919

20-
Then, build and copy assets, create the database and add fixtures:
20+
Then, create the database and add fixtures:
2121

2222
```bash
2323
make install
2424
make db-reset
2525
```
2626

27-
Run Bolt using the built-in webserver, Docker or your own preferred webserver:
27+
Run Bolt using the built-in webserver, Symfony CLI, Docker or your own preferred webserver:
2828

2929
```bash
3030
bin/console server:start
3131
```
3232

3333
or…
3434

35+
```bash
36+
symfony server:start -d
37+
symfony open:local
38+
```
39+
40+
or…
41+
3542
```bash
3643
make docker-install
3744
```

0 commit comments

Comments
 (0)