In this example, ooth is integrated in the API code (i.e. it doesn't run as a standalone microservice).
The api is an express app with an ooth-authenticated graphql endpoint.
Configs are handled via node-config.
You can simply modify ./api/config/default.js
file or create ./api/config/local.js
file with your custom config.
See full configuration instructions on related page
Run
cd api
yarn
yarn start
The client is a create-react-app that connects to the API.
Run (in a new terminal)
cd client
yarn
yarn start