Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 482 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 482 Bytes

AlmaZone : An Alumni Management System for tracking the alumni of the colleges and schools.

setup

virtualevn venv
. venv/bin/activate
pip install -r requirements.txt

database setup (Postgresql)

sudo systemctl start postgresql
python
>>>from flaskblog import create_app, db
>>>app = create_app()
>>>app.app_context().push()
>>>db.create_all()
>>>db.session.commit()

Run the program:

python run.py

Open link 127.0.0.1:5000/ in browser.