- Unitime API
- The Rest API documentation is located here, is is all JSON.
- The tool for generating the base application
- https://github.com/facebookincubator/create-react-app
- React tutorial
- https://facebook.github.io/react/tutorial/tutorial.html
We are using Docker to have an isolated environment were we can develop the application. Navigate to this project in a shell. The first command will download the node base container, start it and attach a tty to us. The next command will start the development server.
docker run -it --rm -v $PWD:/app --net host node bash
cd /app/
npm install
npm start
- [ ] List courses in a nice way.
- [ ] Search for a course, both with course code and course name.
- [ ] Save added courses in web storage.
- [ ] List course events related to course.