Skip to content

A tool to analyse all CSE courses and find links between courses and concepts

Notifications You must be signed in to change notification settings

Jinan-Dangor/cse-curriculum-analysis

 
 

Repository files navigation

CSE Curriculum Analysis

Research Thesis 2020 - Terry Agapitos (z5162173)

Running

Running everything locally

$ docker-compose up --build

Then navigate to http://localhost:80

For development (hotloading)

db

docker-compose -f docker-compose-local.yml up --build to boot up the database.

server

$ cd server
$ pipenv shell
$ cd api
$ flask run

front end

Change URL in api.js

$ cd client
$ npm install
$ npm run dev # development

For deployment

Get dump.pgdata and put it in the server/database directory. Also, get .env.prod and put it in the root directory.

Then from the root directory, run:

$ docker-compose up --build
# Then, in another terminal shell, run the following command.
# this command will populate the database.
$ docker exec cse-curriculum-analysis_db_1 sh -c "pg_restore -C -d postgres dump.pgdata"

This only needs to be done once

About

A tool to analyse all CSE courses and find links between courses and concepts

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 85.1%
  • JavaScript 12.5%
  • Other 2.4%