Skip to content

Commit

Permalink
Actually add the start scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
itsfolf committed Sep 11, 2019
1 parent 64763c1 commit eb1a806
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ Spotify adblock windows is a spotify adblocker inspired by [spotify-adblock-linu
1. Clone the repository with `git clone https://github.com/checkium/spotify-adblock-windows.git` or download the latest version from the [releases page](https://github.com/checkium/releases)
2. Run `npm install` to download all the required dependencies
3. Open Spotify `Settings` page, scroll all the way down and click `Show Advanced Settings`, set the proxy type to HTTP, the host to `127.0.0.1` and the port to `8081`, finally, click `Update Proxy`
4. Execute `start.bat` (or run `node start`) to initiate the application
4. Execute `start.bat` (or run `npm start`) to initiate the application
5. Install the CA certificate under `certs/certs/ca.crt` on "Trusted Root Certification Authorities" (more information [here](https://github.com/Checkium/spotify-adblock-windows/wiki/Installing-the-root-CA))
6. Enjoy listening without distractions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Blocks spotify ads using a MITM proxy",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions start.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm start

0 comments on commit eb1a806

Please sign in to comment.