This repository contains the source code for the backend system of the CloudLabs project. The backend system of the project is based on the Spring Boot framework, developed using Java.
You may easily deploy a local instance of the project using docker/podman.
# Build the docker image (include --progress=plain --no-cache to observe stdout)
docker build -t cloudlabs/server .
# Run guacd
docker run --name some-guacd -d -p 4822:4822 guacamole/guacd
# Run the image on default port (or add --server.port=9000 for custom port)
docker run -p 8080:8080 cloudlabs/server
- Clone the repository.
git clone -b staging git@link_of_repo
- Create and switch to a new branch
git switch -c your-new-branch-name
- Commit changes after development
git commit -m "Describe your changes"
- Push to remote repository
git push -u origin your-branch-name