You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
toadharvard
changed the title
Научиться генерировать типы для фронтенда на основе спецификации OpenAPI снегерированной FastAPI
Научиться генерировать endpoint's для фронтенда на основе спецификации OpenAPI снегерированной FastAPI
Sep 26, 2024
import{defineConfig}from'@hey-api/openapi-ts'import'dotenv/config'exportdefaultdefineConfig({base: process.env.VITE_API_URI,// api эндпоинтinput: `${process.env.VITE_API_URI}/openapi.json`,// url на спеку openapi.jsonoutput: {path: 'src/shared/api/__generated__',// папка, куда положить сгенерированные типы и api клиентlint: 'eslint',format: 'prettier'},services: {asClass: true},client: 'axios'})
Но @hey-api/openapi-ts умеет генерировать и из локального файла, и из бека, развернутого на локалхосте, так что с этим вроде не должно возникнуть проблем
https://fastapi.tiangolo.com/advanced/generate-clients/
The text was updated successfully, but these errors were encountered: