Skip to content

Commit 7c828a9

Browse files
committed
add start-css start-nss
1 parent 4bfea9b commit 7c828a9

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

scripts/start-css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
unset PREFIX npm_config_prefix
4+
export NVM_DIR="$HOME/.nvm"
5+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
6+
7+
npx lerna bootstrap --force-local
8+
9+
# cd workspaces/node-solid-server
10+
# nvm use --delete-prefix
11+
# ./bin/solid-test start --root ./data --port 8443 --ssl-key ../privkey.pem --ssl-cert ../fullchain.pem & # & to run in background
12+
13+
cd workspaces/css-mashlib
14+
nvm use --delete-prefix
15+
npm run start:clean & # & to run in background

scripts/start-nss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
unset PREFIX npm_config_prefix
4+
export NVM_DIR="$HOME/.nvm"
5+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
6+
7+
npx lerna bootstrap --force-local
8+
9+
cd workspaces/node-solid-server
10+
nvm use --delete-prefix
11+
./bin/solid-test start --root ./data --port 8443 --ssl-key ../privkey.pem --ssl-cert ../fullchain.pem & # & to run in background
12+

0 commit comments

Comments
 (0)