Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 416 Bytes

BUILD.md

File metadata and controls

33 lines (25 loc) · 416 Bytes

Déploiement des sources

En mode développement

cd frontend
yarn dev
cd backend
yarn start-dev

En mode production

Docker

docker compose up --build --detach && docker logs -f tchap-bot

À partir des sources

cd frontend
yarn vite build
cd ..
rm -Rf ./backend/static/* && cp -R ./frontend/dist/* ./backend/static/
cd backend
yarn build 
yarn start-prod