Explorar el Código

Launch gogs at startup

DricomDragon hace 5 años
padre
commit
5bf1340ba9
Se han modificado 2 ficheros con 15 adiciones y 0 borrados
  1. 12 0
      Guides/gogs.md
  2. 3 0
      Install/Templates/startgogs

+ 12 - 0
Guides/gogs.md

@@ -23,16 +23,28 @@ Create _gituser_ :
 
 ## Start gogs
 
+### Install binaries
+
 The binary of gogs is unziped in `/home/gituser/`
 
 [Download gogs binaries](https://gogs.io/docs/installation/install_from_binary)
 
+### Manually start gogs
+
 Please launch gogs as gituser.
 
 `$ sudo su gituser`
 
 `$ /home/gituser/gogs/gogs web`
 
+### Automate gogs start when computer boots
+
+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 ssh
 
 ### Add ssh key

+ 3 - 0
Install/Templates/startgogs

@@ -0,0 +1,3 @@
+#!/usr/bin/fish
+
+/home/gituser/gogs/gogs web > /dev/null 2>&1 &