Book review site📚

This is a simple Django project which a group of friends made to boost their skills!

Installation🏗️

Before installing please make sure that your Python version is at least 3.7+

  1. Clone the repo first.
git clone https://github.com/N3code/review-library.git
  1. Install virtual environment to keep this package isolated:
pip install virtualenv
  1. To create a folder with the virtual env simply write this:
virtualenv env
  1. And then cd into it:
cd env
  1. After that simply write:
./Scripts/activate

For Linux devices simply write:

cd env 

And activate it:

source ./Scripts/activate
  1. Install the packages using the pip command
pip install -r requirements.txt

Usage⚙️

  1. cd into the repo with manage.py file
cd books_review
  1. Run the app
python manage.py runserver

Contributing👯

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.