Fix start-local settings to match README

This commit is contained in:
Max Goodhart
2021-05-04 22:08:27 -07:00
parent e961bc21b7
commit 13fe2a0dac
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ Under the hood, think of Streamwall as a specialized web browser for mosaicing v
## To Start Streamwall ## To Start Streamwall
1. Using a terminal/console window as described above, go to the streamwall directory, and run `npm run start-local` 1. Using a terminal/console window as described above, go to the streamwall directory, and run `npm run start-local`
2. This will open a black stream window and a browser window. The default username is "streamwall" and the default password is "please-change-this". 2. This will open a black stream window and a browser window. The default username is "streamwall" and the default password is "local-dev".
3. Use the browser window to load or control streams. The initial list will be populated from https://woke.net/#streams 3. Use the browser window to load or control streams. The initial list will be populated from https://woke.net/#streams
4. If you enter the same stream code in multiple cells, it will merge them together for a larger stream. 4. If you enter the same stream code in multiple cells, it will merge them together for a larger stream.

View File

@@ -6,7 +6,7 @@
"scripts": { "scripts": {
"build": "webpack", "build": "webpack",
"start": "npm run build -- --display=errors-only && electron dist", "start": "npm run build -- --display=errors-only && electron dist",
"start-local": "npm run build -- --display=errors-only && electron dist --control.address=http://localhost:4444 --control.username=woke --control.password=woke", "start-local": "npm run build -- --display=errors-only && electron dist --control.address=http://localhost:4444 --control.username=streamwall --control.password=local-dev",
"test": "jest" "test": "jest"
}, },
"author": "Max Goodhart <c@chromakode.com>", "author": "Max Goodhart <c@chromakode.com>",