This application is designed for reviewing, rating books.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
- Python 3.6.4
- Postgres
A step by step series of examples that tell you have to get a development environment running
Download the python and install python.
https://www.python.org/downloads/
Download the Postgres and install it.
https://www.postgresql.org/download/
Install pip
$ easy_install pip
Create Virtual Environment
$ pip install virtualenv
$ cd Book_Review_App
$ virtualenv venv
$ venv\Scripts\activate
Install all package from requirements.txt
$ pip install -r requirements.txt
Access postgres user
$ psql -U postgres
$ CREATE DATABASE bookreview;
Run migration
python manage.py makemigrations
python manage.py migrate
$ python manage.py runserver
Explain what these tests test and why
Give an example
Explain what these tests test and why
Give an example
Add additional notes about how to deploy this on a live system
- Django - The web framework used
- PostgreSQL - Open Source Database
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use Git for versioning. For the versions available, see the tags on this repository.
- Sadman Sobhan - Backend Developer - imran110219
- Md Shahjahan - Fullstack Developer - shahed48
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details
- Hat tip to anyone who's code was used
- Inspiration
- etc