You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# XPUB Library
|
|
|
|
Library running on Flask and SQLight (maybe to be replaced with a python shelve)
|
|
|
|
|
|
|
|
requirements.txt
|
|
|
|
$ pip3 install -r requirements.txt
|
|
|
|
|
|
|
|
initialise database
|
|
|
|
$ bash init_db.sh
|
|
|
|
|
|
|
|
run script
|
|
|
|
python3 run.py
|
|
|
|
|
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
has currently 2 entrypoints:
|
|
|
|
|
|
|
|
/api/books
|
|
|
|
GETs all the books in the database
|
|
|
|
|
|
|
|
/api/book/id
|
|
|
|
GETs a specific book by its id
|
|
|
|
|
|
|
|
|
|
|
|
Further installnotes (bugs)
|
|
|
|
|
|
|
|
* For Macusers -> brew install imagemagick@6 in order to install wand
|
|
|
|
|
|
|
|
* create the covers folder inside the uploadsfolder
|
|
|
|
* don't forget to chmod the uploads and coverfolder ;-)
|