├── .env.local ├── .gitignore ├── .vscode └── settings.json ├── BuildAllInOneDockerFile.sh ├── Dockerfile ├── GetLatestBackEndSources.sh ├── GetLatestFrontEnd.sh ├── LICENSE ├── README.md ├── UpdateAllSources.sh ├── commands.sh ├── dynamic_env_generator.py ├── patches.json ├── pics └── ss.png ├── run_docker_exec.sh └── run_docker_stop.sh /.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/.env.local -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Sources/ 2 | Data/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "search.useIgnoreFiles": false 3 | } -------------------------------------------------------------------------------- /BuildAllInOneDockerFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/BuildAllInOneDockerFile.sh -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/Dockerfile -------------------------------------------------------------------------------- /GetLatestBackEndSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/GetLatestBackEndSources.sh -------------------------------------------------------------------------------- /GetLatestFrontEnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/GetLatestFrontEnd.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/README.md -------------------------------------------------------------------------------- /UpdateAllSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/UpdateAllSources.sh -------------------------------------------------------------------------------- /commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/commands.sh -------------------------------------------------------------------------------- /dynamic_env_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/dynamic_env_generator.py -------------------------------------------------------------------------------- /patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/patches.json -------------------------------------------------------------------------------- /pics/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/pics/ss.png -------------------------------------------------------------------------------- /run_docker_exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/run_docker_exec.sh -------------------------------------------------------------------------------- /run_docker_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodaay/HuggingChatAllInOne/HEAD/run_docker_stop.sh --------------------------------------------------------------------------------