xaizek / fragile (License: AGPLv3+) (since 2018-12-07)
Simple lightweight CI, attempting to be somewhat Unix-like in its philosophy.
<root> / config.php.sample (66b637d71552760cd092e80d001c00405cf50d17) (1,019B) (mode 100644) [raw]
<?php

// name of the project checked by this CI instance
const PROJECT_NAME = '';

// URL of the project checked by this CI instance
const PROJECT_URL = '';

// database connection string
// example: 'sqlite:/var/fragile/data.sqlite'
const DB_DSN = '';

// path to directory containing builder-scripts
// example: '/var/fragile/builders'
const BUILDERS_PATH = '';

// number of second to sleep before repeated checks for new tasks
const DAEMON_TIMEOUT = 10;

// web-path prefix
// example: '/fragile'
const WEB_ROOT = '';

// URL of repository to get data from (source of a checkout)
const REPO_URL = '';

// path to repository check out directory
// example: '/var/fragile/repo'
const REPO_PATH = '';

// path to root directory for per-builder build directory
// example: '/var/fragile/buildbox'
const BUILDS_PATH = '';

// how many revisions to display on the dashboard
const REVISIONS_LIMIT = 4;

// link to sources of the project (update if you modify them)
const CI_URL = 'https://github.com/xaizek/fragile';

?>
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/fragile

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

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