In order to develop this app, you'll most likely want to start a local instance of each Gymboard service that it relies on. Each service should expose a `./start-dev.sh` script that you can call to quickly boot it up, but refer to each service's README for more detailed information, like generating sample data.
Within `src/`, there are a few key directories whose functions are listed below:
-`src/api/` contains a Typescript client implementation for consuming the various APIs from Gymboard services such as the CDN, Search, and main API. The main API (`src/api/main/index.ts`) can be imported with `import api from 'src/api/main';`. While the other APIs may differ based on their usage, generally the main API is structured as a hierarchy of classes with `readonly` properties to act as namespaces.
-`src/components/` contains auxiliary Vue components that help in building pages.
-`src/pages/` contains all the pages as Vue components.
-`src/i18n` contains translation files as JSON objects for all supported languages.