[UNMAINTAINED]
MyReadingList is project that will list your reading history (or any other user) from Goodreads and display it.
This come in handy if you want to show your cool list of books to friends but at the same time you want to manage all your reading activity from Goodreads.
- List your reading history
- Display your bookshelves and books
- Get your comments and rating from books you've been read
- Clone the repository
- Go to
client/src/config.js
and change theapiUrl
tohttp://localhost:5000
- Edit
ID
variable at/api/config.py
to change the User Goodreads id - Run the following command:
$ docker-compose up
- You can now access the client at
http://localhost:3000
and the API athttp://localhost:5000
- Clone the repository
- Go to
client/src/config.js
and change theapiUrl
tohttp://localhost:5000
- Edit
ID
variable at/api/config.py
to change the User Goodreads id - Run the API server:
$ cd api $ python -m venv venv $ source venv/bin/activate $ pip install -r requirements.txt $ python main.py
- Run the client server:
$ cd client $ npm install $ npm start