File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ POSTGRES_CONTAINER_NAME=rusty_db
18
18
Then, we must start the database and apply all migrations.
19
19
20
20
``` bash
21
- make start_db && make prepare_db
21
+ make start_db
22
+ make prepare_db
22
23
```
23
24
24
25
We can then start the service with the following command:
@@ -58,7 +59,8 @@ make install_diesel_cli
58
59
Then, we must start the app database and apply all migrations to get the database to the desired state.
59
60
60
61
``` bash
61
- make start_db && make prepare_db
62
+ make start_db
63
+ make prepare_db
62
64
```
63
65
64
66
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.
73
75
make stop_db
74
76
```
75
77
78
+ There are other helper commands in the ` makefile ` file that can be useful while contributing to this project.
79
+
76
80
### Tools
77
81
78
82
- Docker
You can’t perform that action at this time.
0 commit comments