11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#! /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 |