File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 11Bolt 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
1010Navigate 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
1717DATABASE_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
2323make install
2424make 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
3030bin/console server:start
3131```
3232
3333or…
3434
35+ ``` bash
36+ symfony server:start -d
37+ symfony open:local
38+ ```
39+
40+ or…
41+
3542``` bash
3643make docker-install
3744```
You can’t perform that action at this time.
0 commit comments