- Introduction of interview_phase and normal phase in TRAICIE_SELECTION_SPECIALIST to make interaction with bot more human. - More and random humanised messages to TRAICIE_SELECTION_SPECIALIST
21 lines
363 B
Bash
Executable File
21 lines
363 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /Volumes/OWC4M2_1/Development/Josako/EveAI/TBD/docker
|
|
source ./docker_env_switch.sh dev
|
|
|
|
echo "Copying client images"
|
|
cp -fv ../eveai_chat_client/static/assets/img/* ../nginx/static/assets/img
|
|
|
|
|
|
dcdown eveai_chat_client nginx
|
|
|
|
cd ../nginx
|
|
|
|
npm run clean
|
|
npm run build
|
|
|
|
cd ../docker
|
|
./build_and_push_eveai.sh -b nginx
|
|
|
|
dcup eveai_chat_client nginx
|