git clone https://github.com/ajinkyagadewar/location_mapping.git
virtualenv --python=python3 env
source env/bin/activate
cd loction_mapping_flask/
pip install -r requirements.txt
https://tecadmin.net/install-postgresql-server-on-ubuntu/ Create a database as “world_data“
create database world_data;
Pass all credentials in app.py file. This can be changed to environment secrets or vault secrets in future
psql -Upostgres world_data <world.sql
flask db migrate
flask db upgrade
export FLASK_APP=app.py
flask run