Upload your transcript by making a POST request to this endpoint with a form-data key transcript and value as the transcript file.
/api/transcript/upload
Response will be a JSON with student data from the transcript.
Build the image
docker build -t ku-transcript-backend .Run the container
docker run --name ku-transcript-backend -p 3000:3000 ku-transcript-backendBuild go binary
go build -o ku-transcript-backend cmd/main.goRun the binary
./ku-transcript-backendrefer to gofiber/swagger for more information.
swag init --parseDependency -g ../../../cmd/main.go -d internal/app/controllers/Go to localhost:3000/swagger to view the documentation.