Files
full-stack-fastapi-template/scripts/generate-client.sh
2024-11-27 12:42:44 +01:00

13 lines
256 B
Bash

#! /usr/bin/env bash
set -e
set -x
cd backend
python -c "import app.main; import json; print(json.dumps(app.main.app.openapi()))" > ../openapi.json
cd ..
mv openapi.json frontend/
cd frontend
npm run generate-client
npx biome format --write ./src/client