Gogs Installation
Understand how to install and configure Gogs on the DevOps Katas Learning VM, starting the server, setting database options, and preparing it for use in practical DevOps exercises. This lesson helps you gain hands-on skills to manage a lightweight Git server as part of continuous integration workflows.
We'll cover the following...
We'll cover the following...
Step 1: Install Gogs
Start the Gogs server:
- Open a new terminal window
cd gogs./gogs web -port 8000- Minimize the terminal window
Commands
Command / Parameter | Description |
| This changes to the directory where Gogs is installed. |
| This starts the Gogs server. |
The Gogs ...