summarylogtreecommitdiffstats
path: root/README.md
blob: ce120fcbb2849596ace15eb1185dce2f6ce096a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Gogs
PKGBUILD files for different versions of Gogs (Go Git Service).

## Open points
* ~~Systemd service support~~
* ~~better file structure~~
* ~~Publishing on https://aur.archlinux.org~~
* Test
  * MariaDB support
  * PostgreSQL support
* ~~Test on armv6h (Raspberry Pi), armv7h (Cubieboard 2) and on x86_64~~
* Documentation for usage and configuration - Started with Archlinux Wiki page https://wiki.archlinux.org/index.php/Gogs
* ~~Read dependencies out of ".gopmfile"~~

## Install
```
$ wget https://aur.archlinux.org/packages/go/gogs-*/gogs-*.tar.gz
$ tar -xvzf /<path to Tarball>/gogs-*.tar.gz
$ cd <package-name>
$ makepkg
$ pacman -U gogs-*.tgz
```

## Configuration
Enable and start systemd servicd
```
$ systemctl enable gogs.service
$ systemctl start gogs.service
```

## Logging
After start of the service every log entry is over journalctl displayable.
```
$ journalctl -f -u gogs.service
```