Update home authored by Lars Florian Meiendresch's avatar Lars Florian Meiendresch
......@@ -127,7 +127,28 @@ To make your application accessible, you'll want to route external traffic to th
## CI/CD GitLab Pipeline
A GitLab pipeline was developed inside the `.gitlab-ci.yml` for automatic testing and deploying on a stage and production server. After installing a GitLab runner with the `stage` and `main` tags on the according server and starting it with `cd / && gitlab-runner run`, code will be tested and deployed fully automated.
A GitLab pipeline was developed inside the `.gitlab-ci.yml` for automatic testing and deploying on a stage and production server. After installing a GitLab runner with the `stage` and `main` tags on the according server and starting it with `cd / && gitlab-runner run &`, code will be tested and deployed fully automated. The config.toml could look like the following:
````
concurrent = 1
check_interval = 20
connection_max_age = "60m0s"
shutdown_timeout = 0
[session_server]
session_timeout = 1800
[[runners]]
concurrent = 1
name = "19squared"
url = "https://git.rwth-aachen.de"
id = 8672
token = "glrt-token"
token_obtained_at = 2024-11-04T21:17:51Z
token_expires_at = 0001-01-01T00:00:00Z
executor = "shell"
user = "gitlab-runner"
````
## Proposed (V-)Server Setup Guide
......
......