A library management system is software that is designed to manage all the functions of a library. It helps librarian to maintain the database of new books and the books that are borrowed by members along with their due dates. This system completely automates all your library's activities.
There are two sections in this system.
- Open GitHub and go to the GitHub repository that you want to clone.
- Click “Code” and copy the given URL.
- Open “Git Bash” and change the current working directory to the location where you want the cloned directory.
- Type git clone in the terminal, paste the URL you copied earlier, and press “enter” to create your local clone.
git clone {repository URL}
Navigate into in the application folder:
cd Library-Management-System-with-FAQ-Bot
Create a virtual environment for the app:
py -m venv .venv
.venv\scripts\activate
Install the dependencies:
pip install -r requirements.txt
Make the Migrations to store the database:
python manage.py makemigrations
Migrate:
python manage.py migrate
Run the app:
python manage.py runserver
Browse to the sample application at http://localhost:8000 in a web browser.