# CRUD operations performed by using ExpressJS, MySQL, Sequelize ORM
Create .env file and add the following environment variables:
# PORT=5000
# DB_NAME=your_mysql_db_name
# DB_USERNAME=your_mysql_username
# DB_PASSWORD=your_mysql_password
# DB_HOST=localhost
# DB_DIALECT=mysql
# Backend deps
npm install
# Backend Server (Local)
npm run dev