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: documentation/docs/contribute/development-guide/01-setup.md
+18-13Lines changed: 18 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
# Setup
2
2
3
+
```mdx-code-block
4
+
import TabItem from '@theme/TabItem';
5
+
import Tabs from '@theme/Tabs';
6
+
```
7
+
3
8
## Prerequisites
4
9
5
10
To work with the template monorepo you'll need to install [these tools](../../about/running/01-prerequisites.md).
@@ -42,31 +47,31 @@ From inside the /api folder.
42
47
43
48
### Create virtualenv
44
49
50
+
Virtual environment is used for running unit tests with pre-commit and upgrade packages. It also can be used to run the application if you not are using Docker.
51
+
45
52
```shell
46
53
python3 -m venv .venv
47
54
```
48
55
49
-
Virtual environment is used for running unit tests with pre-commit and upgrade packages. It also can be used to run the application if you not are using Docker.
0 commit comments