Skip to content

pglaum/pytabweb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pytabweb

Guitar Pro tab viewer on the web.

Screenshot of the tab viewer

Installation

  • download the repository
  • download fontawesome and put it into web/static/fonts/fa
  • install sqlite3
  • create a virtual env (python3 -m venv venv)
  • create the .flaskenv file (see below)
  • install python dependencies in the venv (pip install -r requirements.txt)

.flaskenv

The flask env file can look like this

FLASK_APP=app.py
FLASK_DEBUG=0
FLASK_ENV=production
FLASK_RUN_HOST=127.0.0.1
FLASK_RUN_PORT=1234

DATABASE_URL=sqlite:////path/to/sqlite3.db
SECRET_KEY=some-secret-key

DATA_DIR=/path/to/where/you/want/to/store/the/tabs/

Run with gunicorn

You can run the webserver with gunicorn like this:

gunicorn -w 4 -b 127.0.0.1:5100 app:app

About

Guitar tab viewer on the web

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published