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
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,18 @@ poetry install
71
71
```
72
72
This command will install the dependencies based on what we specify in poetry.lock. If this step is taking a long time, try to go back to step 2 and check your version of poetry. Alternatively, you could also try deleting the lock file and regenerate it by doing `poetry install` (Please note this method should be used as a last resort because this would force other developers to change their development environment)
73
73
74
+
If you want to install the API you will need to install those dependencies as well:
75
+
76
+
```
77
+
poetry install --extras "api"
78
+
```
79
+
80
+
If you want to install the uwsgi:
81
+
82
+
```
83
+
poetry install --extras "api"
84
+
```
85
+
74
86
5. Fill in credential files:
75
87
*Note*: If you won't interact with Synapse, please ignore this section.
0 commit comments