Go to file
Dmitriy Zaporozhets d74d7c7cfb Update app code to use Gitlab::Git::Diff 2013-04-15 19:02:05 +03:00
app Update app code to use Gitlab::Git::Diff 2013-04-15 19:02:05 +03:00
config remove yaml_db gem, Replace team members index route with team_index 2013-04-11 09:39:49 +03:00
db Remove Wiki and db table since we use gollum now 2013-04-10 22:20:00 +03:00
doc Merge pull request #3522 from dplarson/correct-install-docs 2013-04-07 11:22:23 -07:00
features Fix random failing test 2013-04-12 09:56:10 +03:00
lib Update app code to use Gitlab::Git::Diff 2013-04-15 19:02:05 +03:00
log init commit 2011-10-09 00:36:38 +03:00
public Add logo to deploy.html 2013-02-16 21:35:11 +02:00
script Fix sidekiq chech and added script/check 2013-01-09 20:31:05 +02:00
spec change user_spec to pass postgres 2013-04-15 16:30:26 +03:00
tmp Add tmp/.gitkeep file to ensure tmp folder exists on clone 2012-09-04 05:28:48 -04:00
vendor Result of misspellings run. 2013-03-17 19:46:54 +00:00
.foreman complete hooks for post receive 2012-01-08 13:20:20 +02:00
.gitignore Replace unicorn with Puma 2013-04-04 23:19:24 +03:00
.rspec Spork support added 2013-03-26 13:38:42 +04:00
.simplecov organize simplecov 2013-01-07 22:23:13 +02:00
.travis.yml Include ruby 2.0 in travis 2013-04-09 19:29:45 +03:00
CHANGELOG Updated changelog. GitLab 5.1 is beta now 2013-04-15 16:58:10 +03:00
CONTRIBUTING.md Move issues first since people submitting PR's are more into the OpenSource thinking. Hat tip Yves Senn. 2013-04-12 11:25:25 +02:00
Capfile.example Capistrano deployment example scripts 2013-02-20 00:13:18 -03:30
Gemfile Updated gems. Replaced gollum with gollum-lib 2013-04-11 11:03:57 +03:00
Gemfile.lock Updated gems. Replaced gollum with gollum-lib 2013-04-11 11:03:57 +03:00
Guardfile APi for commits. Better api docs 2012-09-21 13:22:30 +03:00
LICENSE init commit 2011-10-09 00:36:38 +03:00
Procfile Replace unicorn with Puma 2013-04-04 23:19:24 +03:00
README.md Fix badge image url to ci.gitlab.org 2013-04-09 10:14:11 +03:00
ROADMAP.md Roadmap is on the feedback forum. 2013-04-03 09:00:01 +02:00
Rakefile init commit 2011-10-09 00:36:38 +03:00
VERSION Updated changelog. GitLab 5.1 is beta now 2013-04-15 16:58:10 +03:00
config.ru added RAILS_RELATIVE_URL_ROOT support 2012-12-28 18:11:28 +00:00

README.md

GitLab: self hosted Git management software

logo

GitLab allows you to

  • keep your code secure on your own server
  • manage repositories, users and access permissions
  • communicate through issues, line-comments and wiki pages
  • perform code review with merge requests

GitLab is

  • powered by Ruby on Rails
  • completely free and open source (MIT license)
  • used by more than 10.000 organizations to keep their code secure

Code status

  • build status ci.gitlab.org (master branch)

  • build status travis-ci.org (master branch)

  • Code Climate

  • Dependency Status

  • Coverage Status

Resources

Requirements

  • Ubuntu/Debian**
  • ruby 1.9.3
  • MySQL
  • git
  • gitlab-shell
  • redis

** More details are in the requirements doc

Installation

Official production installation

Follow the installation guide for production server.

Official development installation

If you want to contribute, please first read our Contributing Guidelines and then we suggest you to use the Vagrant virtual machine project to get an environment working with all dependencies.

Unsupported production installation

New versions and upgrading

Each month on the 22th a new version is released together with an upgrade guide.

Run in production mode

  1. The Installation guide contains instructions on how to download an init script and run it automatically on boot. You can also start the init script manually:

     sudo service gitlab start
    

or by directly calling the script

    sudo /etc/init.d/gitlab start

Run in development mode

Start it with Foreman

    bundle exec foreman start -p 3000

or start each component separately

    bundle exec rails s
    bundle exec rake sidekiq:start

Run the tests

  • Seed the database

      bundle exec rake db:setup RAILS_ENV=test
      bundle exec rake db:seed_fu RAILS_ENV=test
    
  • Run all tests

      bundle exec rake gitlab:test
    
  • Rspec unit and functional tests

      bundle exec rake spec
    
  • Spinach integration tests

      bundle exec rake spinach
    

GitLab interfaces

Getting help

  • Troubleshooting guide contains solutions to common problems.

  • Support forum is the best place to ask questions. For example you can use it if you have questions about: permission denied errors, invisible repos, can't clone/pull/push or with web hooks that don't fire. Please search for similar issues before posting your own, there's a good chance somebody else had the same issue you have now and had it resolved. There are a lot of helpful GitLab users there who may be able to help you quickly. If your particular issue turns out to be a bug, it will find its way from there to a fix.

  • Feedback and suggestions forum is the place to propose and discuss new features for GitLab.

  • Support subscription connect you to the knowledge of GitLab experts that will resolve your issues and answer your questions.

  • Consultancy allows you hire GitLab exports for installations, upgrades and customizations.

  • Contributing guide describes how to submit pull requests and issues. Pull requests and issues not in line with the guidelines in this document will be closed without comment.

Getting in touch