xaizek / fragile (License: AGPLv3+) (since 2018-12-07)
Simple lightweight CI, attempting to be somewhat Unix-like in its philosophy.
<root> / header.php (c9b198c5d922c3234a5c24a558884128f2ba6815) (1,190B) (mode 100644) [raw]
<!-- Copyright (C) 2015 xaizek <xaizek@posteo.net>

fragile is free software: you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
Foundation, version 3.

fragile is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along
with this program.  If not, see <http://www.gnu.org/licenses/>.

-->

<?php

require_once __DIR__ . '/config.php';

print "<html><head>\n";

print '<title>' . PROJECT_NAME . " | fragile</title>\n";

print "<link href='" . WEB_ROOT . "/style.css' rel='stylesheet' "
    . " type='text/css'/>\n";
print "<link href='" . WEB_ROOT . "/favicon.png' rel='shortcut icon' "
    . "type='image/png'/>\n";

print "</head><body>\n";
print "<header>"
    . "<span class='menu'><a href='" . WEB_ROOT . "/'>dashboard</a></span>"
    . "<span class='title'><a href='" . PROJECT_URL . "'>"
      . PROJECT_NAME
    . "</a></span>"
    . "</header>\n";

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