Init.py creates the app and calls the bluprints
Web application created using Python Flask and SQLite.
Created as part of 2021 Microsoft San Francisco Summer Challenge Project(SFSCP). Presentation link
Algorthim.py matches users with similar profiles and housings Auth.py creates and manages user accounts Db.py manages the SQlite database Housing.py creates and manages housing posts Roommeet.py creates and manages user profiles
Please execute the following command in the terminal before starting the application
$ export FLASK_APP=flaskr
$ export FLASK_ENV=development
Execute the following command to start the application
$ flask run
If made changes to database schema.sql, please execute
$ flask init-db
Flask resource: (https://flask.palletsprojects.com/en/2.0.x/tutorial/)