https://github.com/jonrh/rotten-tube
A group programming project in the module Distributed Systems, University College Dublin.
https://github.com/jonrh/rotten-tube
Last synced: about 1 month ago
JSON representation
A group programming project in the module Distributed Systems, University College Dublin.
- Host: GitHub
- URL: https://github.com/jonrh/rotten-tube
- Owner: jonrh
- Created: 2015-10-26T18:44:38.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-06T16:52:06.000Z (over 10 years ago)
- Last Synced: 2023-04-05T04:38:53.660Z (about 3 years ago)
- Language: JavaScript
- Homepage:
- Size: 1.37 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# RottenTube
A group programming project in the course Distributed Systems COMP30220,
University College Dublin. The aim of the project was to develop a system that
utilises distributed technologies. For this project we chose to use
[REST](https://en.wikipedia.org/wiki/Representational_state_transfer) and
[GraphQL](http://graphql.org/). The project that we picked was to create a
concept [Rotten Tomatoes](http://www.rottentomatoes.com/) for
[YouTube](https://www.youtube.com/) channels.

## Architecture
RottenTube is a 3 tier application. At the bottom is a MySQL server hosted on
Amazon Web Services [RDS](https://aws.amazon.com/rds/). On top of that is a
REST web service and a GraphQL server. Finally the consuming application is a
prototype web app that speaks to both REST and GraphQL. In this project are 4
sub folders, each corresponding to the 4 previously mentioned tiers.

## Team members
* [brettji](https://github.com/brettji)
* [jonrh](https://github.com/jonrh)
* [zyifei](https://github.com/zyifei)
* [Radha13](https://github.com/Radha13)
## Files and folders
* **docs**: Contains other documentation such as assignment description.
* **graphql**: Contains code for the GraphQL server layer.
* **mysql**: Contains any files we may need regarding the MySQL database, table
definition, scripts, etc.
* **rest**: Contains code for the REST API.
* **website**: Code for the React front-end web app.
* **.gitignore**: A file that tells Git what files we don't want to submit to
the repository. For details see [here](http://git-scm.com/docs/gitignore).