Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 445 Bytes

README.md

File metadata and controls

15 lines (15 loc) · 445 Bytes

Introduction

This is the backend of the Plasmoid org.kde.plasma.ypm-lyrics. Please run it before use the addon.

Usage

$ git clone https://github.com/LiYulin-s/ypm-lyrics-backend.git
$ cd ypm-lyrics-backend
$ pip install -r requirements.txt
$ python -m flask run &

And if you do not want to use the built-in server of the Flask, you can change it.

$ pip install gunicorn
$ python -m gunicorn -b localhost:5000 app:app -D