ericz1803 / CreswellGrades

Gradebook

Home Page:https://creswell-grades.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Gradebook

https://creswell-grades.herokuapp.com/

License:MIT License


Languages

Language:Python 43.7%Language:JavaScript 27.1%Language:HTML 26.7%Language:CSS 2.1%Language:Mako 0.4%Language:Shell 0.1%