Skip to content

Commit

Permalink
add start-css start-nss
Browse files Browse the repository at this point in the history
  • Loading branch information
bourgeoa committed Nov 22, 2022
1 parent 4bfea9b commit 7c828a9
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
15 changes: 15 additions & 0 deletions scripts/start-css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

unset PREFIX npm_config_prefix
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm

npx lerna bootstrap --force-local

# cd workspaces/node-solid-server
# nvm use --delete-prefix
# ./bin/solid-test start --root ./data --port 8443 --ssl-key ../privkey.pem --ssl-cert ../fullchain.pem & # & to run in background

cd workspaces/css-mashlib
nvm use --delete-prefix
npm run start:clean & # & to run in background
12 changes: 12 additions & 0 deletions scripts/start-nss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

unset PREFIX npm_config_prefix
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm

npx lerna bootstrap --force-local

cd workspaces/node-solid-server
nvm use --delete-prefix
./bin/solid-test start --root ./data --port 8443 --ssl-key ../privkey.pem --ssl-cert ../fullchain.pem & # & to run in background

0 comments on commit 7c828a9

Please sign in to comment.