For local development with hot-reload:
# 1. Start only the necessary services (Meilisearch + Test-Logger)
bun run dev:services
# 2. Start the dev server
bun run dev
# Or both in one command:
bun run dev:fullThe app will run on: http://localhost:5173
- SvelteKit Dev Server:
localhost:5173(with hot-reload) - Meilisearch:
localhost:7700(Docker container) - Test-Logger: Docker container with label
loggator.enable=true - Docker Socket:
/var/run/docker.sock(locally available)
bun run dev:stopFor production with all services in Docker:
docker compose down && docker compose up -d --buildThe app will run on: http://localhost:3000
.env.development: Automatically used forbun run dev(localhost).env: Used for Docker containers (meilisearch:7700)