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
- Host: GitHub
- URL: https://github.com/the-akira/django-secret-library
- Owner: the-akira
- Created: 2019-11-16T18:25:40.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-21T20:40:44.000Z (over 2 years ago)
- Last Synced: 2025-01-18T18:46:30.653Z (9 months ago)
- Topics: database, django, django-secret-library, fullstack, library-management-system, python3, pythonanywhere
- Language: Python
- Homepage:
- Size: 1.13 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Secret Library

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)**.