Skip to content

v4ld3rr4m4/CreswellGrades

 
 

Repository files navigation

Build Status GitHub license

Features

  • Teacher gradebook
    • Up to 8 grade categories
    • Lowest grade dropping
    • Dragscroll for smoother navigation
    • Graphs showing statistics for assignment grades and total grade
  • Student grade viewer
    • Breakdown by category
    • Shows dropped grades
    • What if grades

Install

First Time Setup

  1. (optional) Set up virtualenv (see below)
  2. Install dependencies: (sudo) pip install -r requirements.txt
  3. Install postgres (see below)
  4. Create database (see below)
  5. Import database structure: python manage.py db upgrade
  6. Basic db setup: python set_up_db.py
  7. Run app: ./develop.sh (or see below)

Set Up Virtualenv

(sudo) pip install virtualenv
virtualenv env
source env/bin/activate

Install Postgres

Mac/Windows: Link
Linux: Install through package manager

Create Postgres Database

psql -U postgres
CREATE DATABASE grades
CREATE DATABASE gradestest (for testing)

Run Application

export APP_SETTINGS=config.DevelopmentConfig
export DATABASE_URL="postgresql://localhost/grades"
export SECRET_KEY= ___ (replace with actual secret key)
export FLASK_APP=app.py
flask run

Development

Edit Models

  1. Make edits in models.py.
  2. (first time) python manage.py db init
  3. (first time) python set_up_db.py
  4. python manage.py db migrate
  5. python manage.py db upgrade

Deploy

heroku config:set APP_SETTINGS=config.ProductionConfig --remote pro
git push pro master

Releases

No releases published

Packages

No packages published

Languages

  • Python 43.6%
  • JavaScript 27.1%
  • HTML 26.7%
  • CSS 2.1%
  • Other 0.5%