gitss

module
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 17, 2017 License: MIT

README

GitSS

wercker status

About

GitSS is full text source search app for git repositories. This repository is heavily under development and unstable now.

How to use

Requirements

GitSS use git command internaly. So you need to set PATH environment variable to use git command.

Install

Download binary file for your environment in the Release Page. Currently, you can download binary files for Linux(64bit), Darwin(64bit) and Windows(64bit).

Add Setting for a git repository

To add sync setting, run gitss add command as follows.

./gitss add yourOrgName yourProjectName http://your-git-site/your-git-repo.git

This will create data/conf/yourOrgName.json file as follows. Using this setting file, GitSS do syncing with remote git repository and indexing the contents automatically.

{
 "name": "yourOrgName",
 "projects": [
   {
     "name": "yourProjectName",
     "repositories": [
       {
         "url": "http://your-git-site/your-git-repo.git",
         "sizeLimit": 1048576,
         "includeBranches": ".*",
         "includeTags": ".*"
       }
     ]
   }
 ]
}

Also there are more options for gitss add. Please check gitss add --help.

Add Setting for a Bitbucket server

If you use Bitbucket server, you can sync and index the all repositories easily. run gitss bitbucket add command as follows.

./gitss bitbucket add yourOrgName http://your-bitbucket-server-site/bitbucket --user=yourId --password=yourPassword

This will create data/conf/yourOrgName.json file as follows. Using this setting file, GitSS fetch all repositories from Bitbucket server, then do syncing git repositories and indexing.

{
 "name": "yourOrgName",
 "scm": {
   "excludeProjects": "",
   "excludeRepositories": "",
   "includeProjects": ".*",
   "includeRepositories": ".*",
   "password": "yourPassword",
   "type": "bitbucket",
   "url": "http://your-bitbucket-server-site/bitbucket",
   "user": "yourId"
 },
 "sizeLimit": 1048576,
 "includeBranches": ".*",
 "includeTags": ".*"
}

Also there are more options for gitss bitbucket add. Please check gitss bitbucket add --help.

Manual syncing & indexing

After adding setting file, run gitss sync command with --all option as follows. GitSS read all setting files and sync git repository and index the contents.

./gitss sync --all

If you'd like to sync one repository only, you can use gitss sync command as follows.

./gitss sync yourOrgName yourProjectName your-git-repo
Run server

Run gitss server command as follows. Then open http://your-server:3000 . In addition, the sync scheduler is started when starting GitSS server. The scheduler do syncing git repository and indexing the contents automatically.

./gitss server

If you'd like to change the port (Default: 3000), you can use --port option.

./gitss server --port=5000

If you'd like to change the sync schedule (Default: 0 */10 * * * *), you can use --schedule option as follows.

./gitss server --schedule="0 */30 * * * *"

Development

Requirements
Setup
  1. Install gom(old version), fresh.
go get github.com/mattn/gom
go get github.com/pilu/fresh

# install old version gom
cd $GOPATH/src/github.com/mattn/gom
git checkout 393e714d663c35e121a47fec32964c44a630219b
go install
  1. Install Golang dependencies.
gom install
  1. Install JavaScript dependencies.
yarn
Run with development mode
  1. Generate bindata.go for development mode.
npm run bindata
  1. Generate vendor.js for development mode.
npm run build:client-dll
  1. Start webpack and gin with watch mode.
npm start & fresh
  1. Open http://localhost:9000
Release Build

Run webpack with production mode, go-bindata and go build in turn. All you have to do is run npm run build. The artifact is created under ./dist directory.

npm run build

License

Licensed under the MIT license.

Directories

Path Synopsis
repo
Package repo provides handling git repository.
Package repo provides handling git repository.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL