skillhub/document/i18n/en/docusaurus-plugin-content-docs/current/05-reference/faq.md
tww 19329480c8 feat(docs): complete Docusaurus website with bilingual support
Add complete bilingual (Chinese/English) documentation website:
- Chinese documentation in docs/
- English documentation in i18n/en/
- iFlytek blue theme customization
- Role-based navigation structure
- ToB enterprise value-focused content
2026-03-15 18:36:59 +08:00

1.1 KiB

title sidebar_position description
FAQ 1 Frequently asked questions

FAQ

How to change default port?

Modify port configuration in .env.release.

How to configure HTTPS?

Recommended to use reverse proxy (Nginx/Ingress) for TLS termination.

How to backup database?

Use PostgreSQL standard backup tools (pg_dump).

How to reset admin password?

If you forgot admin password, you can reconfigure bootstrap admin via environment variables or directly operate the database.

Skill package upload failed?

Check:

  1. Whether file size exceeds limit
  2. Whether file type is in whitelist
  3. Whether required SKILL.md is included
  4. Whether SKILL.md frontmatter format is correct

How to extend OAuth Provider?

Refer to existing GitHub implementation, add new OAuth Provider configuration.

How to customize search implementation?

Implement SearchIndexService and SearchQueryService interfaces.

Next Steps