cmux 0.2.8 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/cmux-cli +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -27,6 +27,7 @@ cmux
|
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
This will:
|
|
30
|
+
|
|
30
31
|
1. Start a local Convex backend on port 9777
|
|
31
32
|
2. Start the web server on port 9776
|
|
32
33
|
3. Open your browser to http://localhost:9776
|
|
@@ -41,14 +42,15 @@ cmux --help # Show all options
|
|
|
41
42
|
## First Run
|
|
42
43
|
|
|
43
44
|
On first run, cmux will extract its bundled files to `~/.cmux/`. This includes:
|
|
45
|
+
|
|
44
46
|
- The Convex backend binary and database
|
|
45
47
|
- Web application static files
|
|
46
48
|
- Configuration files
|
|
47
49
|
|
|
48
50
|
## Development
|
|
49
51
|
|
|
50
|
-
cmux is part of the
|
|
52
|
+
cmux is part of the cmux project. See the main repository for development instructions.
|
|
51
53
|
|
|
52
54
|
## License
|
|
53
55
|
|
|
54
|
-
MIT
|
|
56
|
+
MIT
|
package/cmux-cli
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cmux",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "Single-executable web app multiplexer with built-in Convex backend",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cmux": "cmux-cli"
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
},
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|
|
29
|
-
"url": "git+https://github.com/lawrencechen/
|
|
29
|
+
"url": "git+https://github.com/lawrencechen/cmux.git"
|
|
30
30
|
}
|
|
31
31
|
}
|