about summary refs log tree commit diff stats
path: root/scripts/validate_api.sh
blob: 056d550b9b3c3ec4c1b67bc9e9a57170310427e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#! /usr/bin/env sh

root="$(dirname "$0")/.."
api_path="$root/target/api.json"

cargo run --package rocie-server -- open-api >"$api_path"

openapi-generator-cli validate --input-spec "$api_path" --recommend

# vim: ft=sh