Add list of instance follows in about page
[oweals/peertube.git] / scripts / e2e / local.sh
1 #!/bin/sh
2
3 set -eu
4
5 npm run clean:server:test
6
7 (
8     cd client
9     npm run webpack -- --config webpack/webpack.video-embed.js --mode development
10 )
11
12 npm run concurrently -- -k -s first \
13     "cd client && npm run ng -- e2e --port 3333 -c local" \
14     "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" } }' npm start"