/Bookshop

Primary LanguagePython

Book-store

An e-book store, where the users can get a list of all books, create new books, edit and delete books.

Framework

Built with

  • Django
  • Django Restframework

Features

  • GET
  • POST
  • UPDATE
  • DELETE

Installation

This project was built using python - Django. For set up, firstly ensure you have python downloaded and installed. Then proceed to install Django in your command prompt.

pip install django
pip install django, djangorestframework

Usage

Go to the Login-System folder and run

python manage.py runserver

Then go to the browser and enter the url http://127.0.0.1:8000/

Virtual environment.

Before installing the packages required for this project you may want to create a virtual environment. This will ensure you do not have lots of packages clogging. Virtual envirnoment is created by running:

python -m venv .venv
source .venv/bin/activate

Once this is done you can install all packages using requirement.txt

pip install -r requirements.txt

How to use

  • In your code editor run the program by python manage.py runserver in your terminal.

Contributing

  • Clone repository and change directory into that clone.
  • Pull requests are welcomed.
  • Open issues to make changes you would like to see.