Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 703 Bytes

File metadata and controls

31 lines (24 loc) · 703 Bytes

Docker Quick Start

Prerequisites

  • Docker Desktop

1) Prepare environment files

  • Copy templates and set real values:
    • copy .env.example .env
    • copy backend\.env.example backend\.env
    • copy frontend\.env.example frontend\.env

2) Build and run

From project root:

docker compose up --build -d

3) Access apps

  • Frontend: http://localhost:8080
  • Backend API (via frontend proxy): http://localhost:8080/api/v1

4) Logs and stop

docker compose logs -f
docker compose down

Notes

  • SQLite data is persisted in Docker volume backend-data.
  • For production, set APP_ENV=production and provide strong non-default secrets/passwords.