This App is Deployed to Heroku and use PostgreSQL as Database Management System
First Clone the Repository
git clone https://github.com/rizalilhamm/Data-entry-management.git
Create Virtual environment
python -m venv venv
Install the Requirements
pip install -r requirements.txt
Create Database in PostgreSQL
CREATE DATABASE data-entry-management;
Create Database Model using Python
from app import app, db
db.create_all()
Using Migration
flask db migrate -m "Initial Migration"
flask db upgdare
Note: Create PostgreSQL on Heroku if you want to deploy it and set other Configuration