Skip to content

mochfajrin/E-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django E-Library

Get Started

Creating Virtual Environment

python -m venv venv

Enter the Virtual Environment

  • Windows
venv\Scripts\activate
  • Linux
source venv\bin\activate

Install Dependency

pip install -r requirements.txt

Create PostgreSQL Database

CREATE DATABASE <YOUR_DATABASE_NAME>;

Configure .Env

# DJANGO CONFIG

DJANGO_SECRET_KEY="your django secret key"

# DATABASE CONFIG

DATABASE_URL=psql://user:password@hostname:port/your_db

Run Database Migration

python manage.py makemigrations
python manage.py migrate

Run Django Application

python manage.py runserver

Screenshots

Registrasi

Login

Katalog

Unggah Buku atau Update Buku

Detail Buku

Favorit

Preview Buku

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published