|
|
il y a 4 heures | |
|---|---|---|
| docs | il y a 17 heures | |
| libreoffice-server | il y a 1 semaine | |
| nginx | il y a 3 semaines | |
| server | il y a 4 heures | |
| web | il y a 4 heures | |
| .antigravityrules | il y a 1 semaine | |
| .cursorrules | il y a 2 semaines | |
| .dockerignore | il y a 1 semaine | |
| .gitignore | il y a 1 semaine | |
| AGENTS.md | il y a 1 semaine | |
| CLAUDE.md | il y a 1 semaine | |
| FEATURE_SUMMARY.md | il y a 2 semaines | |
| INTERNAL_DEPLOYMENT_GUIDE.md | il y a 2 semaines | |
| INTERNAL_DEPLOYMENT_SUMMARY.md | il y a 2 semaines | |
| LICENSE | il y a 3 semaines | |
| QUICK_START.md | il y a 3 semaines | |
| README.md | il y a 1 semaine | |
| README_ZH.md | il y a 17 heures | |
| all_used_keys.txt | il y a 2 semaines | |
| apply_cjk_translations.js | il y a 2 semaines | |
| apply_cjk_translations.py | il y a 2 semaines | |
| apply_translations.js | il y a 2 semaines | |
| auto_dict.json | il y a 1 semaine | |
| auto_replace.js | il y a 1 semaine | |
| auto_translator.js | il y a 1 semaine | |
| backend_cjk.txt | il y a 1 semaine | |
| build_and_push.bat | il y a 1 semaine | |
| build_and_push.sh | il y a 1 semaine | |
| check_all_dbs.js | il y a 1 semaine | |
| check_schema.js | il y a 1 semaine | |
| cjk_extract.json | il y a 1 semaine | |
| cjk_files.txt | il y a 1 semaine | |
| clean_translations.js | il y a 2 semaines | |
| clean_translations.py | il y a 2 semaines | |
| deploy.sh | il y a 1 semaine | |
| docker-compose.yml | il y a 1 semaine | |
| extract_cjk.js | il y a 2 semaines | |
| extract_cjk.py | il y a 2 semaines | |
| extract_keys.js | il y a 2 semaines | |
| extract_logs.js | il y a 2 semaines | |
| extract_strings.js | il y a 2 semaines | |
| files_to_translate.json | il y a 2 semaines | |
| final_cleanup.js | il y a 2 semaines | |
| final_fix_braces.js | il y a 2 semaines | |
| fix_empty_translations.js | il y a 2 semaines | |
| fix_kb_service.py | il y a 4 heures | |
| identifier.sqlite | il y a 3 semaines | |
| lint_output.txt | il y a 2 semaines | |
| log_dups.txt | il y a 2 semaines | |
| package-lock.json | il y a 1 semaine | |
| package.json | il y a 3 semaines | |
| query_columns.js | il y a 1 semaine | |
| query_db.js | il y a 1 semaine | |
| remaining_4.txt | il y a 1 semaine | |
| remaining_cjk.txt | il y a 1 semaine | |
| schema.txt | il y a 1 semaine | |
| sync_translations.js | il y a 2 semaines | |
| test-feishu-assessment.js | il y a 1 semaine | |
| test-graph.js | il y a 1 semaine | |
| test_admin_features.md | il y a 2 semaines | |
| tm_schema.txt | il y a 1 semaine | |
| tmp_duplicates.txt | il y a 2 semaines | |
| translation_map.json | il y a 1 semaine | |
| true_code.txt | il y a 1 semaine | |
| yarn.lock | il y a 1 semaine |
AuraK is a multi-tenant intelligent AI knowledge base platform. Built with React + NestJS, it's a full-stack RAG (Retrieval-Augmented Generation) system with external API support, RBAC, and tenant isolation.
This system supports deployment in internal networks. Main modifications include:
See Internal Deployment Guide for detailed configuration instructions.
git clone <repository-url>
cd simple-kb
yarn install
docker-compose up -d elasticsearch tika libreoffice
# Backend environment setup
cp server/.env.sample server/.env
# Edit server/.env file (set API keys, etc.)
# Frontend environment setup
cp web/.env.example web/.env
# Edit web/.env file (modify frontend settings as needed)
See the comments in server/.env.sample and web/.env.example for detailed configuration.
yarn dev
Access http://localhost:5173 to get started!
simple-kb/
├── web/ # Frontend application
│ ├── components/ # React components
│ ├── services/ # API services
│ ├── contexts/ # React Context
│ └── utils/ # Utility functions
├── server/ # Backend application
│ ├── src/
│ │ ├── auth/ # Authentication module
│ │ ├── chat/ # Chat module
│ │ ├── knowledge-base/ # Knowledge base module
│ │ ├── model-config/ # Model configuration module
│ │ └── user/ # User module
│ └── data/ # Data storage
├── docs/ # Project documentation
└── docker-compose.yml # Docker configuration
# Start basic services
docker-compose up -d elasticsearch tika
# Local development
yarn dev
# Build and start all services
docker-compose up -d
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)This project is provided under the MIT license. See the LICENSE file for details.
For questions or suggestions, please submit an Issue or contact the maintainers.