Skip to content

Commit

Permalink
Tweaking
Browse files Browse the repository at this point in the history
  • Loading branch information
bobdenotter committed Jul 21, 2019
1 parent cdd290b commit 3475224
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ DATABASE_URL=sqlite:///%kernel.project_dir%/var/data/bolt.sqlite
DATABASE_URL=mysql://root:"root%1"@127.0.0.1:3306/four
```

Then, create the database and add fixtures:
Then, set up the database, create the first user and add fixtures:

```bash
make install
make db-reset
bin/console bolt:setup
```

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

The installation process created the first user. The username is `admin` and
the default password is `admin%1`
Log in using the credentials you created when setting up the first user.
6 changes: 1 addition & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,7 @@
"bolt:install-assets": "symfony-cmd"
},
"post-create-project-cmd": [
"cp -n .env.dist .env || true",
"bin/console doctrine:database:create",
"bin/console doctrine:schema:create",
"bin/console bolt:add-user --admin",
"bin/console doctrine:fixtures:load --append"
"cp -n .env.dist .env || true"
],
"post-install-cmd": [
"@auto-scripts",
Expand Down
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions public/assets/0.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions symfony.lock
Original file line number Diff line number Diff line change
Expand Up @@ -434,9 +434,15 @@
"symfony/polyfill-ctype": {
"version": "v1.10.0"
},
"symfony/polyfill-iconv": {
"version": "v1.11.0"
},
"symfony/polyfill-intl-icu": {
"version": "v1.10.0"
},
"symfony/polyfill-intl-idn": {
"version": "v1.11.0"
},
"symfony/polyfill-mbstring": {
"version": "v1.10.0"
},
Expand Down

0 comments on commit 3475224

Please sign in to comment.