Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 700 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 700 Bytes

Django Project

This is a Django project for time-table management for lecture ,and viewing the task on the calendar, a simple task/lecture adding , removing,updating django app

Installation

  1. Install Django using pip:

    pip install django
  2. Clone the repository:

    git clone https://github.com/yash3004/calendar-django.git

Initialization

  1. Make migrations to initialize the database schema:

    python manage.py makemigrations
  2. Apply migrations to create database tables:

    python manage.py migrate

Running the Server

To run the Django server locally:

python manage.py runserver