The lightweigth github clone
$ sudo -u postgres psql
postgres=# CREATE ROLE gogs_app WITH CREATEDB LOGIN PASSWORD 'VerySecretPassword';
postgres=# CREATE DATABASE gogs_db OWNER gogs_app;
Check database creation : postgres=# \l
Create gituser :
$ sudo adduser gituser
The binary of gogs is unziped in /home/gituser/
Please launch gogs as gituser.
$ sudo su gituser
$ /home/gituser/gogs/gogs web
Find the script to start gogs programmatically in Install/Templates/startgogs
in this repository. Put at the root of your gogs installation. Then, as gituser :
crontab -e
And add the line : @reboot /home/gituser/gogs/startgogs
Use the gui to add the public ssh key. Go to settings.
Example of repository url using SSH :
ssh://gituser@192.168.1.35:6666/DricomDragon/CodingGameSolver.git
Gogs natively manages backups. Prefer to use gogs tools instead of squared wheels.
$ ./gogs backup --help
$ ./gogs restore --help
/home/gituser/gogs/gogs-repositories/
Your previous installation is marked as old :
$ mv gogs gogs_old
Three folders matter :
$ cp -R gogs_old/{custom,data,log} gogs
Backup the gogs_db
from PostgreSQL.