This is the repo containing the prototype for a projectday-manager that is being developed as a part of my bachelor thesis.
- Docker Compose
- npm
- Go
- Copy .env to .env.local
- Build the project by executing the following commands:
docker compose up --build -d
docker compose logs -f
Everything should now be accessible via localhost:8000:
/- Webapp/playground- GraphQL-Playground/query- Access Point to query the backend
The frontend uses NextJS with the Shadcn UI-library. To work on the frontend do the following:
cd frontendnpm installnpm run dev
The backend uses Graphql, Go and Postgresql. To work on the backend do the following:
cd backendgo mod tidygo run server.go