Skip to content

Commit 3475224

Browse files
committed
Tweaking
1 parent cdd290b commit 3475224

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@ 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, create the database and add fixtures:
20+
Then, set up the database, create the first user and add fixtures:
2121

2222
```bash
23-
make install
24-
make db-reset
23+
bin/console bolt:setup
2524
```
2625

2726
Run Bolt using the built-in webserver, Symfony CLI, Docker or your own preferred webserver:
@@ -47,5 +46,4 @@ Finally, open the new installation in a browser. If you've used one of the
4746
commands above, you'll find the frontpage at http://127.0.0.1:8000/
4847
The Bolt admin panel can be found at http://127.0.0.1:8000/bolt
4948

50-
The installation process created the first user. The username is `admin` and
51-
the default password is `admin%1`
49+
Log in using the credentials you created when setting up the first user.

composer.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,7 @@
4242
"bolt:install-assets": "symfony-cmd"
4343
},
4444
"post-create-project-cmd": [
45-
"cp -n .env.dist .env || true",
46-
"bin/console doctrine:database:create",
47-
"bin/console doctrine:schema:create",
48-
"bin/console bolt:add-user --admin",
49-
"bin/console doctrine:fixtures:load --append"
45+
"cp -n .env.dist .env || true"
5046
],
5147
"post-install-cmd": [
5248
"@auto-scripts",

composer.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/0.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

symfony.lock

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,9 +434,15 @@
434434
"symfony/polyfill-ctype": {
435435
"version": "v1.10.0"
436436
},
437+
"symfony/polyfill-iconv": {
438+
"version": "v1.11.0"
439+
},
437440
"symfony/polyfill-intl-icu": {
438441
"version": "v1.10.0"
439442
},
443+
"symfony/polyfill-intl-idn": {
444+
"version": "v1.11.0"
445+
},
440446
"symfony/polyfill-mbstring": {
441447
"version": "v1.10.0"
442448
},

0 commit comments

Comments
 (0)