Skip to content

Commit

Permalink
Added a One-Liner to save time (AsmSafone#31)
Browse files Browse the repository at this point in the history
With this One-Liner, users would not have to copy and paste repeatedly, and they can finish their installation in just 3 steps.
  • Loading branch information
AyushDhimann authored Oct 14, 2022
1 parent eb14874 commit 21242c0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,19 @@ $ cp sample.env .env
# < edit .env with your own values >
$ python3 main.py
```
Or you can use this One-Liner to save your time :

```
git clone https://github.com/AsmSafone/MusicPlayer && cd MusicPlayer && sudo apt install git curl python3-pip ffmpeg -y && pip3 install -U pip && curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - && sudo apt install -y nodejs && sudo apt install build-essential && sudo npm install pm2@latest -g && pip3 install -U -r requirements.txt
```
Make sure to edit the .env file accordingly,
```
cp sample.env .env
```
Run it using,
```
python3 main.py
```

- Docker Build Method
```bash
Expand Down

0 comments on commit 21242c0

Please sign in to comment.