Skip to content

Website similar to Rate My Professor but backed with data from the University of Illinois

License

Notifications You must be signed in to change notification settings

tpjwm/Most-Valuable-Professor

Repository files navigation

Most Valuable Professor

CLICK HERE TO VISIT SITE

This was a semester long project for CS 411: Database Systems

This website is similar to rate my professor in the way that it displays useful information for students looking for courses

It differs in the way that it is backed strongly by data produced by the university

Details

Details about this project, including design, features, dataflow, and more, are located in the project report pdf in this repository

Requirements

python >= 3.5

Getting started

git clone https://github.com/tpjwm/Most-Valuable-Professor.git
cd Most-Valuable-Professor
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
export FLASK_APP = app
flask run

Setting up GCP

Create a app.yaml file in the root folder with the following content:

runtime: python38 # or another supported version

instance_class: F1

env_variables:
  MYSQL_USER: <user_name> # please put in your credentials
  MYSQL_PASSWORD: <user_pw> # please put in your credentials
  MYSQL_DB: <database_name> # please put in your credentials
  MYSQL_HOST: <database_ip> # please put in your credentials

handlers:
# Matches requests to /images/... to files in static/images/...
- url: /img
  static_dir: static/img

- url: /script
  static_dir: static/script

- url: /styles
  static_dir: static/styles

Setting up the deployment

curl https://sdk.cloud.google.com | bash
gcloud components install app-engine-python
gcloud config set project #PROJECT-NAME
gcloud auth login
gcloud app deploy

Credits

  • Pratik - Backend, Database implementation
  • Michael - Backend, Database implementation
  • Dimitar - Backend, Frontend
  • Omar - Frontend, Design

About

Website similar to Rate My Professor but backed with data from the University of Illinois

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published