Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Latest commit

 

History

History
43 lines (28 loc) · 1.24 KB

CONTRIBUTING.md

File metadata and controls

43 lines (28 loc) · 1.24 KB

CONTRIBUTING

Contributions are welcome :)

To contribute you have to license your code under the MIT License. For more information look here.

Feel free to create a pull request here.

Setup

To execute SimpleCloud on your pc you have to setup the execution environment by following these steps:

  1. Clone the project and make sure you are using Java 17
  2. Install Docker
  3. Install microk8s by follwowing the insturction on https://microk8s.io/
  4. After the installation is completed execute the follwing command: microk8s enable dashboard dns registry This command will enable the built-in docker registry.
  5. Add the shell script in microk8s/microk8sScript.sh to your Run Configurations

Image

  1. Add the Gradle ShadowJar task to Before launch

Image

Image

Image

  1. Add microk8s registry as insecure registry to docker’s deamon.js:
  • MacOS path: ~/.docker/daemon.js
{
  ...
  "insecure-registries": [
    "192.168.64.2:32000"
  ]
}
  1. Restart Docker
  2. Run the microk8s script in IntelliJ