A full-stack platform for managing user applications, designed for university clubs.
-
Start the required Docker containers with the
dev
profile:sudo docker-compose --profile dev up -d
-
Run the frontend or backend:
-
Frontend (
localhost:3000
):cd frontend bun install bun run dev
-
Backend (
localhost:8080/api
):cd backend bun install bun run dev
-
Start the production containers with the
prod
profile:sudo docker-compose --profile prod up -d
-
Make sure to configure your
.env
file with your LDAP URL.
This will launch the frontend, backend, and a PostgreSQL database.