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: docs/fastapi_integration.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ This example shows how to manage these two uses of Redis within the same applica
28
28
29
29
## Example app code
30
30
31
-
This is a complete example that you can run as-is:
31
+
Let's look at an example FastAPI app that uses Redis OM. I'll include the code here, but to actually run the example, you'll want to check out the [redis-om-fastapi](https://github.com/redis-developer/redis-om-fastapi) repository from GitHub, which includes the `pyproject.toml` file needed to install the app's dependencies.
32
32
33
33
```python
34
34
import datetime
@@ -105,7 +105,7 @@ async def startup():
105
105
106
106
## Testing the app
107
107
108
-
You should install the app's dependencies first. This app uses Poetry, so you'll want to make sure you have that installed first:
108
+
You should install the app's dependencies first. This app uses Poetry, so you'll want to make sure you have Poetry installed first:
109
109
110
110
$ pip install poetry
111
111
@@ -115,15 +115,16 @@ Then install the dependencies:
0 commit comments