This is a django and mysql project for Course ITW-2
The project have 3 main components
- Home page
- Dashboard
- Data-center
First clone this repo using following command
root@project:~$ git clone https://github.com/Dark002/Covid19_Django_MySQL.git
- Python 3.7 or 3.8 , you can also use anaconda
- Django
- mysql
Other library packages used in this project are listed in requirements.txt
Install them by following command
root@project:~$ pip install -r requirements.txt
It is preferred to create a virtual environemnt and install then install this packages in that environment.
Create a new user named django on local server with password 'USER@123'. create database named COVID19.
Now we just need to run two commands before starting the project.
root@project:-$ python manage.py makemigrations
root@project:-$ python manage.py migrate
Now run the project using following command
root@project:-$ python manage.py runserver