Giter VIP home page Giter VIP logo

browser-4's Introduction

Gitonomy browser

Current build status

Gitonomy browser is a handy tool to visualize your local git repositories.

It's still a work in progress, feel free to contribute on github.

Built with Silex and gitlib (PHP).

Installation

To install project, you first need to clone is using git. When project is cloned, you will need to configure it. To do so, go to config folder and copy distributed files:

git clone [email protected]:gitonomy/browser.git gitonomy-browser
cd gitonomy-browser/config
cp dev.php-dist dev.php
cp prod.php-dist prod.php

Edit prod.php and configure where your git repositories are located. You can configure it in 3 different ways.

First way to configure is to give an exhaustive list of repositories you want:

<?php # prod.php

use Gitonomy\Browser\Git\Repository;

$app['repositories'] = array(
    'foobar' => new Repository('/var/www/foobar'),
    'barbaz' => new Repository('/var/www/barbaz'),
);

The second way is to use recursive function to detect repositories. It's very useful if you have multi-level folders:

<?php # prod.php

$app['repositories'] = '/var/www';

The third way is to use a wildcard to detect repositories. It's very useful if you have every repository at the same level

<?php # prod.php

$app['repositories'] = '/var/www/repo-*';

When you have filled it, launch composer to fetch dependencies and make project workable:

php composer.phar install

browser-4's People

Contributors

lyrixx avatar juliendidier avatar francisbesset avatar sroze avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.