Skip to content

๐ŸŽ“ uo.zone is a web app that allows you to look up past grades for courses at the University of Ottawa.

Notifications You must be signed in to change notification settings

alexander-azizi-martin/uo.zone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

uo.zone

UO Grades

uo.zone is a web app that allows you to look up past grades for courses at the University of Ottawa.

Tech Stack

The frontend is written in typescript using nextjs, shadcn ui, and tailwind css.

The backend is written in php using laravel, sqlite, and meilisearch.

Python and scrapy were used to scrape information from the University of Ottawa's website and ratemyprofessors.

Acknowledgments

The idea for UO Grades was inspired by Gopher Grades a similar website for the University of Minnesota, Twin Cities. The design and initial frontend for UO Grades was based off of the Gopher Grades Github.

Running Locally

Prerequisites

Backend

cd backend

# installs php composer dependencies
docker run --rm \
    -u "$(id -u):$(id -g)" \
    -v "$(pwd):/var/www/html" \
    -w /var/www/html \
    laravelsail/php82-composer:latest \
    composer install --ignore-platform-reqs

cp .env.example .env


# optional: allows the use of 'sail' rather than './vendor/bin/sail'
echo "alias sail='sh $([ -f sail ] && echo sail || echo vendor/bin/sail)'" >> ~/.zshrc
source ~/.zshrc

npm install
./vendor/bin/sail up -d
./vendor/bin/sail artisan key:generate
./vendor/bin/sail artisan db:extract \
    --file=https://uozone.s3.ca-central-1.amazonaws.com/database.tar.xz
./vendor/bin/sail artisan scout:fresh

# live at http:https://localhost

Frontend

cd frontend

cp .env.example .env.local

npm install
npm run dev

# live at http:https://localhost:3000

About

๐ŸŽ“ uo.zone is a web app that allows you to look up past grades for courses at the University of Ottawa.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages