Skip to content

DataBase Management Systems Project using Django with MySQL database.

Notifications You must be signed in to change notification settings

Ishan-sinha/Airport-Management-System

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Airport Management System

Course project for Database Management System CO301

Install components

sudo apt-get update
sudo apt-get install python-pip python-dev mysql-server libmysqlclient-dev
sudo apt-get install wkhtmltopdf

Setting up MySQL

sudo mysql_secure_installation
mysql -u root -p
create database airportdb character set utf8;
create user airportuser@localhost identified by 'Password@0';
grant all privileges on airportdb.* to airportuser@localhost;
flush privileges;
exit

Setting up Virtual Environment and Install Requirements

sudo pip install virtualenv
python3 -m venv myvenv
source myvenv/bin/activate
pip3 install -r requirements.txt

Running the project

cd ~/Airport_Management-System
python manage.py makemigrations
python manage.py migrate
python manage.py runserver

About

DataBase Management Systems Project using Django with MySQL database.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 54.0%
  • HTML 46.0%