A full-stack platform for managing user applications, designed for university clubs.
-
Start the required Docker containers with the
devprofile: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
prodprofile:sudo docker-compose --profile prod up -d
-
Make sure to configure your
.envfile with your LDAP URL.
This will launch the frontend, backend, and a PostgreSQL database.