diff --git a/README.md b/README.md index 4008abf..76c12d7 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/app.js b/app.js index bafb4a8..d527067 100644 --- a/app.js +++ b/app.js @@ -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) } })