Skip to content

Latest commit

 

History

History
21 lines (21 loc) · 497 Bytes

File metadata and controls

21 lines (21 loc) · 497 Bytes

library

A library site made using django backend.

Setup

   git clone https://github.com/vcode11/library.git
   cd library
   python3 -m venv _venv
   . _venv/bin/activate
   pip install --upgrade pip3
   pip3 install -r requirements.txt
   python manage.py makemigrations
   python manage.py migrate
   python manage.py createsuperuser
   python manage.py runserver

To run the backend server:

   cd library
   . _venv/bin/activate
   python manage.py runserver