Add llms.txt (#502)

This commit is contained in:
Misha Bragin
2025-12-01 20:39:03 +01:00
committed by GitHub
parent 1b73ce2855
commit 62d1627412
3 changed files with 245 additions and 2 deletions

View File

@@ -3,9 +3,10 @@
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"dev": "npm run gen:llm && next dev",
"build": "npm run gen:llm && next build",
"gen": "swagger-codegen generate -i https://raw.githubusercontent.com/netbirdio/netbird/main/management/server/http/api/openapi.yml -l openapi -o generator/openapi && npx ts-node generator/index.ts gen --input generator/openapi/openapi.json --output src/pages/ipa/resources",
"gen:llm": "node scripts/generate-llm-docs.mjs",
"start": "next start",
"lint": "next lint"
},