Project for team 1's 2020 IBM Blue Movement Bootcamp
- React - Frontend: JavaScript library for creating web apps!
- node.js - Evented I/O for the backend
- Material UI - Frontend framework for UI design
Two methods: Online and Local
Online Method (gh-pages branch)
Access via website: https://blue-movement.github.io/team1_2020/
Local Method (master branch)
Requires node.js.
$ git clone https://github.com/Blue-movement/team1_2020
$ cd team1_2020
$ ./run.sh- Adedapo Adetayo
- Daijon Bereola-Carson
- Myles Cherebin
- Anthonia Duru
- Caitlynn Journey
- Ndunge Mulwa
- Prabhjot Singh
- Ekene Uzoegwu
- Armani Weise
- Perren Wright
team1_2020
├── ...
├── public # Files to display web page
│ └── ...
├── src
│ ├── components # All frontend components used to display web pages
| | ├── feed # Social Media Feed component
| | | └── ...
| | ├── 404.js # 404 Status component
| | ├── about.js # About component
| | ├── action.js # Action component
| | ├── navbar.js # Navbar component
| | ├── protest.js # Protest component
| | └── uplift.js # Uplift component
│ ├── App.js # Main Component responsible for routing
│ ├── index.css # Main CSS File
│ ├── theme.js # Takes a component and applies a theme to it
│ └── ...
├── README.md # The file you are currently reading
├── run.sh # Bash script to run the web application
└── ...
