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/internal/publishing.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -37,20 +37,20 @@ After you've submitted the PR which bumps the version and then [publish a GitHub
37
37
38
38
### Dev CLI
39
39
40
-
Run the following command but replace `0.1.0rc1` with the version that you just published:
40
+
Run the following command but replace `1.0.0` with the version that you just published:
41
41
42
42
```sh
43
-
uvx mesop==0.1.0rc1 scripts/smoketest_app/main.py
43
+
cd scripts/smoketest_app/ &&uvx mesop==1.0.0 main.py
44
44
```
45
45
46
46
This will start the Mesop dev server and you can test that hot reload works. Double-check that the version shown is the version that you just released.
47
47
48
48
### Gunicorn integration
49
49
50
-
Run the following command but replace `0.1.0rc1` with the version that you just published:
50
+
Run the following command but replace `1.0.0` with the version that you just published:
51
51
52
52
```sh
53
-
cd scripts/smoketest_app/ && uvx --with mesop==0.1.0rc1 gunicorn@latest main:me
53
+
cd scripts/smoketest_app/ && uvx --with mesop==1.0.0 gunicorn@latest main:me
54
54
```
55
55
56
56
This will launch Mesop under the Gunicorn server so you can make sure it works as expected.
0 commit comments