You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -163,6 +163,28 @@ uv sync
163
163
uv run fastapi dev main.py
164
164
```
165
165
166
+
## Running Locally
167
+
168
+
We support running our services as containers using docker compose
169
+
170
+
> Prerequisite
171
+
> * Ensure that docker is installed
172
+
> * Ensure 4 Redis instances and 3 PostgreSQL instance are setup for the various services
173
+
174
+
To startup the containers:
175
+
176
+
```
177
+
docker compose up -d --build
178
+
```
179
+
180
+
To tear everything down
181
+
182
+
```
183
+
docker compose down
184
+
```
185
+
186
+
187
+
166
188
### Note:
167
189
- You are required to develop individual microservices within separate folders within this repository.
168
190
- The teaching team should be given access to the repositories as we may require viewing the history of the repository in case of any disputes or disagreements.
0 commit comments