Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Merge branch 'develop' of https://github.com/hiyamashu/Metronami into…
Browse files Browse the repository at this point in the history
… develop
  • Loading branch information
Dylankjy committed Sep 18, 2021
2 parents 83c4609 + a3e8213 commit ead941b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Chocolatey would have already done this step automatically for you. Only do this
- You must have NodeJS installed first
- Open a terminal window (for windows, search Powershell; Open it with Administrator) and type `choco install visualstudio2017buildtools`. Press enter and wait for installation to be completed.

**Step 2:** Get the latest Metronami release [here](https://github.com/hiyamashu/Metronami/releases). Only select pre-release versions if you want to participate in early-release testing. Download links can be found under assets, `Source code (zip)`.
**Step 2:** Get the latest Metronami Loader release [here](https://github.com/hiyamashu/Metronami-Loader/releases). Only select pre-release versions if you want to participate in early-release testing. Download links can be found under assets, `Source code (zip)`.

**Step 3:** Open `start-metronami.cmd` (For Windows) or `start-metronami.sh` (For macOS & Linux) to start Metronami. To close the application, close the window or do `Ctrl+C` in the terminal window to terminate.
**Step 3:** Open `start-metronami-loader.cmd` (For Windows) or `start-metronami-loader.sh` (For macOS & Linux) to start Metronami.

## Legal
Metronami is licensed under the GPL-3.0 license. A copy may be found in `LICENSE` file for your reference.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ require('./app/routes/routes')(app)
const open = require('open')
const chalk = require('chalk')

const webserverPort = 3000
const webserverPort = 36554

const webserver = () => {
app.listen(webserverPort, (err) => {
if (err) {
console.log(`\x1b[1m\x1b[2m[WEBSERVER] - \x1b[0m\x1b[1m\x1b[31m\x1b[5mFAILED\x1b[0m\x1b[31m: Unable to bind to port 5000. Could there possibly be another instance alive?\x1b[0m`)
console.log(`\x1b[1m\x1b[2m[WEBSERVER] - \x1b[0m\x1b[1m\x1b[31m\x1b[5mFAILED\x1b[0m\x1b[31m: Unable to bind to port 36554. Could there possibly be another instance alive?\x1b[0m`)
process.exit(1)
}
})
Expand Down

0 comments on commit ead941b

Please sign in to comment.