xaizek / rocketgit (License: AGPLv3+) (since 2018-12-09)
Light and fast Git hosting solution suitable to serve both as a hub or as a personal code storage with its tickets, pull requests, API and much more.
Commit 9c3b7123869564217493ab43c4bafdea2ce15702

Cannot use env vars from cron
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-01-03 08:45
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-01-03 08:45
Parent(s): bb334f3f3ec2af94da578b6c2e9202b339f80f36
Signing key:
Tree: d524ff29a4b7ffb2c398dbe0d721f11ee2edf804
File Lines added Lines deleted
samples/config.php 0 5
File samples/config.php changed (mode: 100644) (index 52ec9dd..bfa4485)
... ... $rg_base = "/home/rocketgit";
7 7 // Database // Database
8 8 $rg_sql_debug = 1; $rg_sql_debug = 1;
9 9 $rg_sql = 'user=rocketgit dbname=rocketgit connect_timeout=10'; $rg_sql = 'user=rocketgit dbname=rocketgit connect_timeout=10';
10 $docker_addr = getenv('RP_PORT_5432_TCP_ADDR');
11 if ($docker_addr !== FALSE) {
12 $rg_sql .= ' host=' . $docker_addr;
13 $rg_sql .= ' port=' . getenv('RP_PORT_5432_TCP_PORT');
14 }
15 10
16 11 // Session // Session
17 12 $rg_session_time = 3600; $rg_session_time = 3600;
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master