Repository for Personal Score Partner API documentation.
You can build and export the documentation locally outside Apiary with a few simple steps. All you need is working Node.js environment on your machine.
- Clone this repository
git clone [email protected]:zonkyio/zscore-partner-api.git
cd zscore-partner-api
- Install project dependencies
npm install
- Run development server
npm run dev
Server will start on http://localhost:3000
and will listen for changes in apiary.apib
file.
- Export documentation
npm run build
- Pull image
docker pull apiaryio/client
- Export documentation
docker run -v $(pwd):/tmp apiaryio/client preview --output=/tmp/result.html --path=/tmp/apiary.apib
The documentation will be exported to a single result.html
file.