Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

Cal-CS-61A-Staff/howamidoing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Archived Repo

This repo has been merged into https://github.com/Cal-CS-61A-Staff/cs61a-apps/, and has been archived.

EECS Grade Display Tool

This is a tool meant to display and forecast grades for lower-div EECS classes at UC Berkeley. To deploy, run yarn build && yarn deploy.

To develop, install the python dependencies in server/requirements.txt, run yarn, then run yarn dev. yarn dev will concurrently run python3 app.py (backend) and yarn start (frontend).

To setup the database, run mysql and run the command CREATE DATABASE statuscheck;.

Environment Variables

OAUTH_SECRET = secret key for oauth

DATABASE_URL = url for mysql db

MYSQL Setup and Troubleshooting (Mac)

Download community version from here

Add PATH variable to your .bash_profile/.zprofile. For mac, export PATH=${PATH}:/usr/local/mysql/bin

To start server: sudo /usr/local/mysql/support-files/mysql.server start

To stop server: sudo /usr/local/mysql/support-files/mysql.server stop

If you're getting an access denied error when running app.py, follow the steps below:

  1. Run mysql using sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables
  2. DROP USER ‘user’@‘host’;
  3. FLUSH PRIVILEGES;
  4. CREATE USER ‘user’@‘host’;
  5. GRANT ALL PRIVILEGES ON *.* TO ‘user’@‘host’;

If you're unable to load libssl.1.1.dylib or libcrypto.1.1.dylib when running app.py:

  1. brew install openssl
  2. copy both from /usr/local/Cellar/openssl/1.0.1?/lib replacing 1.0.1? with your version to usr/local/lib

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published