Skip to content

fmbxnary/flask-bookcase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bookcase

Bookcase is a flask based web application which uses SQLite, Bootstrap and Google Books API. Users that have registered have the able to keep a list of the books they have read. Users can also search for books, see its information and comment on any book.

Installing

$ git clone https://github.com/fmbxnary/flask-bookcase.git
Note
You may need to enter your Google Books Api key:
    bookcase.py > GOOGLE_API

Requirements

$ python -m venv venv
$ venv/Scripts/activate
$ pip install -r requirements.txt

Environment

For Mac

$ flask init-db
$ export FLASK_APP=bookcase
$ export FLASK_DEBUG=1

For Windows

>_ flask init-db
>_ set FLASK_APP=bookcase
>_ set FLASK_DEBUG=1

Running

$ flask run
  * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)