feat(chat): added base for chat service

added front html

nigel in the mud

route function with openapi - gen

clean up the code a little

after pull request
This commit is contained in:
NigeParis 2025-11-11 10:02:05 +01:00 committed by Maix0
parent 73a4946d17
commit 9ce9fa44e4
122 changed files with 9354 additions and 2615 deletions

18
src/chat/entrypoint.sh Normal file
View file

@ -0,0 +1,18 @@
#!/bin/sh
set -e
set -x
# do anything here
mkdir -p /volumes/static/chat/
cp -r /extra/chat.html /volumes/static/chat/chat.html
cp -r /extra/chat.js /volumes/static/chat/chat.js
cp -r /extra/style.css /volumes/static/chat/style.css
# chmod -R a+r /volumes/static/chat || true
# run the CMD [ ... ] from the dockerfile
exec "$@"