Skip to content

Admin GUI for PostgreSQL database using Django (Final Project - Database Management)

License

Notifications You must be signed in to change notification settings

JayantiTA/tiketin-admin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tiketin-admin

Start Project

pip3 install django
pip3 install django-environ
django-admin startproject Tiketin
cd Tiketin
python3 startapp core
python3 migrate
python3 createsuperuser

App Directory

The core app directory will start with the following files inside:

core/
│
├── migrations/
│   └── __init__.py
│
├── __init__.py
├── admin.py
├── apps.py
├── models.py
├── tests.py
├── views.py
├── .env.example
└── .env

Set Up Environment Variables

Create file named .env that contains database environment variables, refer to .env.example file.

Run Server

Run the Django development server using:

python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py runserver

Reference

Customize Django Admin Python

About

Admin GUI for PostgreSQL database using Django (Final Project - Database Management)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published