- Chris Crutchfield - Project Manager/Front-end Lead
- Raghav Kansal - Vice Project Manager/Back-end Lead
- Madel Asistio - Software Development Lead
- Robert Chen - Quality Assurance Lead
- Vivian Pham - Business Analyst
- Gina Ratto - Senior System Analyst
- Summer Wang - User Interface Specialist
- Kit Wong - Algorithm Specialist
- Jon Lee - Software Architect
- Course Map - A graph representing the selected course and all of the prerequisites in tree form. The selected course is at the root with the prerequisites being children and decedents.
- Course Card - A material design card which contains the department code, course number, number of credits, course title, and course description.
- Course Graph - See course map
- Multinode - A graph node which represents a requriement or elective. Allows a user to select the option they wish to use to fullfill it.
- Requirement - The requirement to take a class. Can have different classes which can fulfill.
Angular2 is a framework which has its roots in MVC. Unfortunately its view and controller go by different names. The updated names are:
- View - Template
- Controller - Component
- Ubuntu 16.04.02 LTS 64 Bit
$ sudo apt-get install -y git curl
Loosely based off of this DataStax tutorial.
- Install the prerequisites
$ sudo apt-get install -y openjdk-8-jre
- Add the DataStax repository
$ echo "deb http://debian.datastax.com/community stable main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
- Add the DataStax trusted key
$ curl -L https://debian.datastax.com/debian/repo_key | sudo apt-key add -
- Install Cassandra
$ sudo apt-get update
$ sudo apt-get install -y cassandra
- Reboot your computer
Adapted from https://nodejs.org/en/download/package-manager/
- Add the Node.js repository
$ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
- Install Node.js
$ sudo apt-get install -y nodejs
- Install Gulp
$ sudo npm install -g gulp
- Change to your home directory
$ cd ~
- Clone the repository using your UCSD Email address and password
$ git clone https://git.ucsd.edu/ccrutchf/team34-cse110.git
- Change into the Repository Directory
$ cd ~/team34-cse110
- Add the tables to cassandra
$ cd ~/team34-cse110/database_queries
$ cqlsh
cqlsh> SOURCE 'Cassandra Starter.cql'
cqlsh> exit
The following will be done in two terminals 1>
will be used to denote the first while 2>
will be used to denote the second.
- Change to the sraper-main directory
1> cd ~/team34-cse110/scraper-main
- Install the dependencies for scraper-main
1> npm install
- Start the server
1> npm start
- Scrape the courses. Wait for
DONE
to be displayed in the first console. This will be a longer running process. Expect it to take between five and ten minutes.
2> curl http://localhost:3001/scrape/courses
- Scrape the degrees. Wait for
inserted
to be displayed in the first console. This process will be very quick.
2> curl http://localhost:3001/scrape/departments
- Scrape the degrees. Wait for
inserted
between eachcurl
call. Eachcurl
call should be very quick.
2> curl http://localhost:3001/scrape/degree/bio
2> curl http://localhost:3001/scrape/degree/cse
2> curl http://localhost:3001/scrape/degree/ece
2> curl http://localhost:3001/scrape/degree/math
2> curl http://localhost:3001/scrape/degree/mus
- Open the main website's source directory
$ cd ~/team34-cse110/server-main
- Install the dependencies
$ npm install
- Build the frontend bundles. This process can take up to a minute and a half.
$ gulp
- Start the website.
$ npm start
- Open
http://localhost:3000
in Chrome.
- If your machine loses network connection during a scrape, it will incorrectly report that classes cannot be found. To address this, reexecute the scrape.