Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastianhaeni/studgraph
Web frontend that visualizes course dependencies of our university major
https://github.com/sebastianhaeni/studgraph
graph-database neo4j react sparql
Last synced: about 7 hours ago
JSON representation
Web frontend that visualizes course dependencies of our university major
- Host: GitHub
- URL: https://github.com/sebastianhaeni/studgraph
- Owner: sebastianhaeni
- Created: 2016-05-25T19:26:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T18:29:58.000Z (over 1 year ago)
- Last Synced: 2023-09-10T19:10:21.787Z (over 1 year ago)
- Topics: graph-database, neo4j, react, sparql
- Language: JavaScript
- Homepage:
- Size: 1.85 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# StudGraph
Web frontend that visualizes course dependencies of our university major.See it live: http://studgraph.herokuapp.com
For project report, refer to `doc/report.pdf`.
## Project management
We used Trello to manage our tasks. Trello supports a Kanban workflow. So we had
a standard task board with columns. Even though it's a very small project, it was still helpful to see progress of other team members.
It was also very fast to set up.## Technology Stack
![System Overview](/doc/system-overview.png?raw=true "System Overview")
### Web Frontend
Languages:
* JavaScript ES2015
* CSSFrameworks:
* react
* react-redux
* redux-saga
* webpack
* VisJSThe following utilities are used to lint the code
* eslint
* jscs
* stylelintBuilt with webpack.
Unit tests with karma
> Runs on Heroku
### PHP Middleware
* PHP 7
The middleware takes requests from the frontend, forwards them to the Neo4j server, transforms it into a useful and friendly format and returns it to the frontend.
> Runs on Heroku
### Neo4j
Any Neo4j server > 2.0
> Runs on GrapheneDB
## Deployment
The frontend of the app is automatically deployed to Heroku. It can be reached at http://studgraph.herokuapp.com.
When pushing to master branch on GitHub, the app is deployed.
The frontend will connect to a Neo4j server on GrapheneDB.Both frontend and database run on a free subscription. So they are relatively slow in reaction time.
## Project structure
* `app/` - contains the web frontend sources
* `cql/` - contains cypher scripts to execute on your Neo4j server
* `internals/` - contains configurations and scripts to build `app/`
* `server/` - sources to run the web frontend locally## Install instructions
### Prerequisites
* Neo4j
* PHP
* NodeJSFrontend:
$ npm install
$ npm start
Middleware:$ cd app/
$ php -S localhost:8000