Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.15 KB

readme.md

File metadata and controls

49 lines (33 loc) · 1.15 KB

React Festival App

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.

API plan

Eventually we'll want to hook this up to a RESTful API. We'll need the following endpoints

Festival

Retrieve startDate, endDate and other festival specific information for a given year. GET: /festival/{year}

Performance

Retrieve data for a specific performance GET: /performance/{performance-id}

Retrieve all shows for a specific performance GET: /performance/{performance-id}/shows

Shows

Retrieve data for a specific show GET: /shows/{show-id}

Retrieve all shows for a specific year GET: /shows/{year}

Venue

Retrieve data about a specific venue GET: /venue/{venue-id}

Retrieve all shows playing at a specific venue GET: /venue/{venue-id}/shows

Organisation

Retrieve data about a specific organisation GET: /organisation/{organisation-id}

Retrieve all shows produced by a specific organisation GET: /organisation/{organisation-id}/shows

Changelog

0.1.0 Setup

  • Setup program with a bit of test data
  • Setup base environment with create-react-app.