Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
greghesp committed Oct 24, 2019
1 parent aabe3bc commit 9995a76
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions readMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ It also supports the Google Home Broadcast command so you can send audio notific

# Installation

Download a copy of this repository and then use `npm install` to get started

Download a copy of this repository and then use `npm run setup` to get started.
Once setup, run `npm run start`
Note: If you cloned this repo, you will need to execute the command in both the relay and client folder as the interface is not packaged


Expand Down
2 changes: 1 addition & 1 deletion relay/helpers/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exports.initializeServer = function (text) {
return new Promise(async(res, rej) => {
const db = await low(adapter);
await db.defaults({
port: 3010,
port: 3000,
muteStartup: false,
quietHours: {
enabled: false,
Expand Down
3 changes: 2 additions & 1 deletion release.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ ncp('./relay/app.js', './release/app.js');
ncp('./relay/package.json', './release/package.json');
ncp('./relay/package-lock.json', './release/package-lock.json');
ncp('./LICENSE', './release/LICENSE');
ncp('./readMe.md', './release/readMe.md');
ncp('./readMe.md', './release/readMe.md');
if (fs.existsSync('./release/bin/config.json')) fs.unlinkSync('./release/bin/config.json');

0 comments on commit 9995a76

Please sign in to comment.