Development Configuration 
LangBot is divided into frontend and backend. The frontend is developed using Next.js + shadcn, and the backend is developed using Quart (an asynchronous version of Flask).
Backend 
The code is located in the pkg directory and is started by the main.py file in the root directory.
Install dependencies, we use uv to manage dependencies.
pip install uv
uv syncStart the backend
uv run main.pyAt this point, the configuration file will be automatically generated in the data/config.yaml file.
Frontend 
The code is located in the web directory and requires Node.js and pnpm.
Copy .env.example to .env and fill in the values.
- Usage in Linux and other environments
 
cp .env.example .env- Usage in Windows environments
 
copy .env.example .envInstall dependencies and start the frontend
pnpm install
pnpm dev
# If pnpm is not installed, you can also use npm to solve dependencies and start
npm install
npm run devThen according to the output information, visit http://127.0.0.1:3000 to view the standalone frontend page.
INFO
When using pnpm dev to start locally, the environment variable NEXT_PUBLIC_API_BASE_URL will be automatically used by the frontend to ensure that the frontend can access the 5300 port of the locally running backend.
In production environments, the frontend will be precompiled into static files and provided by the backend, and the frontend will automatically access the backend address on the same domain.
API Documentation 
We will write API documentation in APIFox before developing each interface. Please refer to API Documentation(Chinese).
