This monorepo contains the frontend and backend chat server for La Vie de Jordi, containerized using Docker and easily deployable with a script.
- Docker
- Docker Compose
- Node.js
git clone https://github.com/Anxton/laviedejordi.git
cd laviedejordinpm installcp .env.example .envEdit the .env file to configure your environment variables.
chmod +x deploy.sh./deploy.shThe frontend is built in the dist folder.
Check that the backend server is running by viewing logs:
docker compose logs -f laviedejordi-containerTo run the application locally without Docker, you can use the following command:
npm run devThis will start both the frontend and backend servers in development mode.
You can access the frontend at http://localhost:5173 and the backend at http://localhost:3000.
This project is licensed under the MIT License. See the LICENSE file for details.