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
Merge pull request #195 from ZeroIntensity/reactpy
This is going to break a lot of things, and basically all CI is going to fail. That's OK--this is an alpha library anyway. For now, we just want to focus on getting all this code on main so we can start working on fixing the C code.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,13 +20,14 @@ $ pip install .
20
20
21
21
Congratulations, you have just started your development with view.py!
22
22
23
+
Note that this cannot be an editable install (the `-e` flag), as `scikit-build-core` does not support it.
24
+
23
25
## Workflow
24
26
25
27
First, you should create a new branch:
26
28
27
29
```
28
-
$ git branch my_cool_feature
29
-
$ git checkout my_cool_feature
30
+
$ git switch -c my-cool-feature
30
31
```
31
32
32
33
All of your code should be contained on this branch.
@@ -72,7 +73,7 @@ fancy = false
72
73
server_logger = true
73
74
```
74
75
75
-
These settings will stop view.py's fancy output from showing, as well as stopping the hijack of the ASGI logger, and you'll get the raw output.
76
+
These settings will stop view.py's fancy output from showing, as well as stopping the hijack of the server's logger, and you'll get the raw server output.
0 commit comments