This app allows you to browse a festival program. This purpose of this project is to test out the capabilites of React for this type of application.
Eventually we'll want to hook this up to a RESTful API. We'll need the following endpoints
Retrieve startDate, endDate and other festival specific information for a given year. GET: /festival/{year}
Retrieve data for a specific performance GET: /performance/{performance-id}
Retrieve all shows for a specific performance GET: /performance/{performance-id}/shows
Retrieve data for a specific show GET: /shows/{show-id}
Retrieve all shows for a specific year GET: /shows/{year}
Retrieve data about a specific venue GET: /venue/{venue-id}
Retrieve all shows playing at a specific venue GET: /venue/{venue-id}/shows
Retrieve data about a specific organisation GET: /organisation/{organisation-id}
Retrieve all shows produced by a specific organisation GET: /organisation/{organisation-id}/shows
- Setup program with a bit of test data
- Setup base environment with create-react-app.