This is a simple CRUD (Create, Read, Update, Delete) application built with Django and PostgreSQL.
The main goal of this project is to learn the Django framework and practice integrating it with a PostgreSQL database. This project is purely for learning purposes and to demonstrate basic CRUD operations.
- Create, Read, Update, Delete records
- PostgreSQL database integration
- Simple web interface using Django templates
- Python 3.x
- Django
- PostgreSQL
- HTML, CSS (for basic UI)
- Clone this repository:
git clone https://github.com/salisKingdoms/DjangoLearn.git
- Create a virtual environment and activate it:
python -m venv .venv .venv\Scripts\activate # Windows source .venv/bin/activate # Linux/Mac - Install dependencies:
pip install -r requirements.txt - Run migrations:
python manage.py migrate - Start the development server:
python manage.py runserver - Open your browser and go to:
http://127.0.0.1:8000/
This project is for learning purposes only. It's a simple implementation to get familiar with Django and PostgreSQL.
Feel free to explore the code and learn from it! 🚀