- Add `language`, `logoId`, and `logoUrl` columns to the `Organization` table with relevant constraints and indexes.
- Update `docker-compose.yml` to support dynamic environment variables in PostgreSQL health check.
- Configure `healthcheck` for the PostgreSQL service in `docker-compose.yml`.
- Update service dependencies to use `condition: service_healthy` for PostgreSQL.
- Modify API Dockerfile to run `npx prisma migrate deploy` before starting the application.
- Add Dockerfiles for API and Web apps with multi-stage builds.
- Configure `docker-compose.yml` to manage services (Postgres, API, Web, pgAdmin).
- Add `.dockerignore` for optimized builds.
- Include `DOCKER_SETUP.md` for deployment steps and guidance.
- Set up SvelteKit for the web interface with Tailwind CSS.
- Build the API using NestJS with Prisma ORM for database interaction.
- Add environment variable management and docker-compose for PostgreSQL and PgAdmin instances.
- Create shared data models for consistent typing across services.
- Establish basic routing and layouts for web and API services.