Skip to content

Commit

Permalink
doc: Fix the development setup documentation
Browse files Browse the repository at this point in the history
`make docker-start` needs to be call before `make db-setup` since the
latter command doesn't start the database.
  • Loading branch information
marien-probesys committed Nov 8, 2022
1 parent c9868c8 commit 732baa1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,25 @@ Install the dependencies:
$ make install
```

Start the development server:

```console
$ make docker-start
```

Setup the database:

```console
$ make db-setup
```

Start the development server:
Create a user:

```console
$ make docker-start
$ ./docker/bin/console app:users:create --email=alix@example.com --password=secret
```

And open [localhost:8000](http://localhost:8000).
Open [localhost:8000](http://localhost:8000) and login with your user credentials.

A note about the `make` commands: they might feel magic, but they are not!
They are just shortcuts for common commands.
Expand Down

0 comments on commit 732baa1

Please sign in to comment.