All Projects → NARKOZ → Ginatra

NARKOZ / Ginatra

Licence: other
A web frontend for Git repositories

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Ginatra

software-systems-architecture
A collection of descriptions of the architecture that various systems use.
Stars: ✭ 24 (-95.4%)
Mutual labels:  web-app, web-application
keep-desktop
Google Keep Dark: Desktop application for Windows, Mac and Linux with Dark Theme.
Stars: ✭ 42 (-91.95%)
Mutual labels:  web-app, web-application
hradla
Logic network simulator that runs in your browser
Stars: ✭ 22 (-95.79%)
Mutual labels:  web-app, web-application
EasyNotes
Apps notes for Windows, iOS and Android with P2P sync / Приложения заметок для Windows, iOS и Android, с P2P синхронизацией
Stars: ✭ 33 (-93.68%)
Mutual labels:  web-app, web-application
Swiftly
Swiftly is an easy to use Qt/C++ web framework
Stars: ✭ 20 (-96.17%)
Mutual labels:  web-app, web-application
Pastebin
Modern pastebin written in golang
Stars: ✭ 111 (-78.74%)
Mutual labels:  web-app, web-application
CometVisu
Repository for the CometVisu building automation visualisation.
Stars: ✭ 60 (-88.51%)
Mutual labels:  web-app, web-application
Percy
Build frontend browser apps with Rust + WebAssembly. Supports server side rendering.
Stars: ✭ 1,856 (+255.56%)
Mutual labels:  web-application, web-app
workflowmanager-viewer-js
Source code for ArcGIS Workflow Manager JavaScript viewer - Manage your workflows on the web.
Stars: ✭ 23 (-95.59%)
Mutual labels:  web-app, web-application
sinator
Sinatra application generator
Stars: ✭ 19 (-96.36%)
Mutual labels:  sinatra, web-application
Node Red Contrib Uibuilder
Easily create data-driven web UI's for Node-RED using any (or no) front-end library. VueJS and bootstrap-vue included but change as desired.
Stars: ✭ 215 (-58.81%)
Mutual labels:  web-application, web-app
web
Cloverleaf is a free, open source app to replace your password manager without storing your passwords anywhere.
Stars: ✭ 33 (-93.68%)
Mutual labels:  web-app, web-application
Android Advancedwebview
Enhanced WebView component for Android that works as intended out of the box
Stars: ✭ 2,186 (+318.77%)
Mutual labels:  web-application, web-app
LoIDE
Web-based IDE for Logic Programming
Stars: ✭ 21 (-95.98%)
Mutual labels:  web-app, web-application
Sharry
Sharry is a self-hosted file sharing web application.
Stars: ✭ 170 (-67.43%)
Mutual labels:  web-application, web-app
card matching game by ercan
A card-matching game made with Flutter.
Stars: ✭ 16 (-96.93%)
Mutual labels:  web-app, web-application
Keira2
The Azerothcore/Trinitycore Database Web-Editor
Stars: ✭ 110 (-78.93%)
Mutual labels:  web-application, web-app
Docker Vulnerable Dvwa
Damn Vulnerable Web Application Docker container
Stars: ✭ 117 (-77.59%)
Mutual labels:  web-application, web-app
Raspberry-Pi-Dashboard
Web-based dashboard interface to inspect Raspberry Pi hardware and software with no extra software required.
Stars: ✭ 131 (-74.9%)
Mutual labels:  web-app, web-application
reactjs-portfolio
Welcome to my portfolio react.js repository page.
Stars: ✭ 109 (-79.12%)
Mutual labels:  web-app, web-application

Ginatra

Build Status Code Climate Gem Version License

Ginatra is a simple web-based git repository browser built on Ruby Sinatra.

[ website | screenshots | demo ]

Features

  • Easy installation
  • Multiple repository support
  • Multiple branch/tag support
  • Commit history, diff, patch
  • Feeds in Atom format
  • Syntax highlighting
  • Repository stats
  • Smart HTTP support
  • and more

Installation

There are 2 ways to install Ginatra: as a packaged Ruby gem or as a Sinatra app.
It's recommended to install it as a ruby gem, unless you know what you're doing.

Ginatra gem

Run the following command to install Ginatra from RubyGems:

gem install ginatra -v 4.1.0

Create config file (see Configuration section in README).

Start the Ginatra server:

ginatra run

By default Ginatra will run on localhost:9797

Ginatra app

Run the following commands to install Ginatra from source:

git clone git://github.com/NARKOZ/ginatra.git
cd ginatra/
git checkout v4.1.0
bundle

Create config file or modify existing (see Configuration section in README).

Start the Ginatra server:

./bin/ginatra run

By default Ginatra will run on localhost:9797

Configuration

Create ~/.ginatra/config.yml file with your own settings. See config.yml for a reference.

git_dirs - Ginatra will look into these folders for git repositories. It's required to append * at the end of path. Example: /home/Development/repos/*

sitename - name of the site. Used in the page title and header.

description - description of web interface. Used in index page.

port - port that Ginatra server will run at.

host - host that Ginatra server will run at.

prefix - prefix for the host serving Ginatra. Used when Ginatra is installed in subdirectory.

git_clone_enabled? - enables smart HTTP support and allows to clone git repositories.

log_file - location of the log file where Ginatra will log warnings and errors. If this setting doesn't present Ginatra will log out to the standard output (stdout).

If you installed Ginatra as an app, you can change settings by editing config.yml file in root folder.

You need to restart web server after applying changes to config file.

CLI

You can interact with Ginatra via CLI. The following commands are available:

ginatra run    # Starts Ginatra server
ginatra stop   # Stops Ginatra server
ginatra status # Checks status of the Ginatra server (running or not)
ginatra -v     # Shows version of Ginatra
ginatra -h     # Lists available commands and their options

How to Contribute

Open issues are labeled per perceived difficulty. See contributing guidelines.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].