Skip to content

Commit c59f337

Browse files
committed
docs: update README
1 parent 1ca83da commit c59f337

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ POSTGRES_CONTAINER_NAME=rusty_db
1818
Then, we must start the database and apply all migrations.
1919

2020
```bash
21-
make start_db && make prepare_db
21+
make start_db
22+
make prepare_db
2223
```
2324

2425
We can then start the service with the following command:
@@ -58,7 +59,8 @@ make install_diesel_cli
5859
Then, we must start the app database and apply all migrations to get the database to the desired state.
5960

6061
```bash
61-
make start_db && make prepare_db
62+
make start_db
63+
make prepare_db
6264
```
6365

6466
We should now be able to run unit and integration tests.
@@ -73,6 +75,8 @@ To stop the service, we can stop the Docker container running Postgres.
7375
make stop_db
7476
```
7577

78+
There are other helper commands in the `makefile` file that can be useful while contributing to this project.
79+
7680
### Tools
7781

7882
- Docker

0 commit comments

Comments
 (0)