An open API service indexing awesome lists of open source software.

https://github.com/the-akira/django-secret-library

Full Featured Library System made with Django
https://github.com/the-akira/django-secret-library

database django django-secret-library fullstack library-management-system python3 pythonanywhere

Last synced: 7 months ago
JSON representation

Full Featured Library System made with Django

Awesome Lists containing this project

README

          

# Django Secret Library

![img](https://raw.githubusercontent.com/the-akira/Django-Secret-Library/master/locallibrary/catalog/static/images/Avatar.png)

Full Featured Library System made with Django.

## Some features included

- User Registration
- Books CRUD
- Authors CRUD
- Search System
- Loan System
- Admin Interface provided by Django

## Installation

### Clone the Repository

```
git clone https://github.com/the-akira/Django-Secret-Library.git
```

### Inside the Main Directory

Create a Virtual Environment

```
python -m venv myvenv
```

Activate the Virtual Environment

```
source myvenv/bin/activate
```

Install Requirements

```
pip install -r requirements.txt
```

Navigate to `locallibrary` and Run the Application

```
python manage.py runserver
```

You can now open your Web Browser and navigate to `http://127.0.0.1:8000/` to see the Web Application.

Inspired by the great tutorial of **[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/Tutorial_local_library_website)**.