staklink 0.3.21 → 0.3.23
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 +10 -0
- package/dist/proxy-server.cjs +1984 -971
- package/dist/staklink-cli.cjs +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -8,6 +8,16 @@ VSCode extension for automating development and debugging in Codespaces.
|
|
|
8
8
|
|
|
9
9
|
npx -y staklink@latest start
|
|
10
10
|
|
|
11
|
+
### local cli testing
|
|
12
|
+
|
|
13
|
+
pm2 stop all
|
|
14
|
+
pm2 delete all
|
|
15
|
+
|
|
16
|
+
yarn build:cli
|
|
17
|
+
yarn build:proxy
|
|
18
|
+
|
|
19
|
+
node bin/staklink.cjs start
|
|
20
|
+
|
|
11
21
|
## processes
|
|
12
22
|
|
|
13
23
|
There are 2 ways to configure your dev processes (like your backend, frontend, db, etc)
|