Github clone. You can install portable github system into Unix/Linux.
See GitPrep example site. GitPrep example site
Check Perl version. You can use GitPrep if the Perl version is 5.10.1+;
perl -v
git --version
Download tar.gz archive, expand it and change directory:
curl -kL https://github.com/yuki-kimoto/gitprep/archive/latest.tar.gz > gitprep-latest.tar.gz
tar xf gitprep-latest.tar.gz
mv gitprep-latest gitprep
cd gitprep
Setup. Needed module is installed.
./setup_module
Setup database.
./setup_database
If you install git in your local directry, you must add the correct git command path to the gitprep.conf config file.
[basic]
;;; Git command path
git_bin=/home/yourname/local/bin/git
Check setup. Run the following command.
prove t
If "syntax OK" is displayed, setup is sucseed.
You can access the following URL.
http://yourhost/somepath/gitprep/gitprep.cgi
If you see an internal server error, look at the log file (gitprep/log/production.log) to see what problem has occurred.
If CGI script isn't run by your user, you need the following work. For example, CGI script is run by apache user.
Change user and group of all files in gitprep directory to apache
chown -R apache:apache gitprep
In this case, you server need to execute CGI. Check apache config file.
For example, you need the following config.
<Directory /var/www/html>
Options +ExecCGI
AddHandler cgi-script .cgi
</Directory>
GitPrep has its own web server, so you can start using the application very easily. In this way, performance is much better than CGI.
Create a gitprep user. This is not necessary, but recommended:
useradd gitprep
su - gitprep
cd ~
And config global git config
git config --global user.name "gitprep"
git config --global user.email "gitprep@example.com"
Download tar.gz archive, expand it and change directory:
curl -kL https://github.com/yuki-kimoto/gitprep/archive/latest.tar.gz > gitprep-latest.tar.gz
tar xf gitprep-latest.tar.gz
mv gitprep-latest gitprep
cd gitprep
Setup. Needed module is installed.
./setup.sh
Check setup. Run the following command.
prove t
If "syntax OK" is displayed, setup is sucseed.
You can start the application by running the provided gitprep script. The application is run in the background and the port is 10020 by default.
./gitprep
Then access the following URL.
http://localhost:10020
If you want to change the port, edit gitprep.conf. If you cannot access this port, you might change the firewall settings.
You can stop the application by adding the --stop option.
./gitprep --stop
If you install git into your local directry, you must add the correct git command path to the config file gitprep.conf .
[basic]
;;; Git command path
git_bin=/home/yourname/local/bin/git
In Gitprep, blame page use "git blame --line-porcelain". In old git, there is no --line-porcelain option. We don't know when --line-porcelain was added to git. At least, blame page work well in git 1.8.2.1.
It is very easy. you only overwrite all files except for "gitprep.conf".
If you want to upgrade by "git pull", you can do it. you create "gitprep.my.conf" copied from "gitprep.my.conf", and do "git pull"
If you get a rainbow unicorn t-rex error after upgrading, you might be missing a new CPAN dependency. Run again "setup.sh".
There are some reasons.
1. Git version is old
If you see "error: RPC failed; result=56, HTTP code = 200" , your git maybe old. Please upgrade to latest git. I checked git version 1.8.5.5.
2. GitPrep restriction
GitPrep restrict max post message size 10MB(This is default of Mojolicious)
You maybe see the following error
Delta compression using up to 4 threads.
Compressing objects: 100% (17830/17830), done.
Writing objects: 100% (18281/18281), 687.05 MiB | 129.92 MiB/s, done.
Total 18281 (delta 295), reused 18281 (delta 295)
error: RPC failed; result=22, HTTP code = 413
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Please increase increase the value of MOJO_MAX_MESSAGE_SIZE
# 1GB
export MOJO_MAX_MESSAGE_SIZE=1024000000
3. git restriction
git restrict post max size via http protocol. http.postBuffer value of git config is maybe small.
You maybe see the following error message.
error: RPC failed; result=56, HTTP code = 200
fatal: The remote end hung up unexpectedly
Counting objects: 18281, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (17830/17830), done.
Writing objects: 100% (18281/18281), 687.05 MiB | 133.23 MiB/s, done.
Total 18281 (delta 295), reused 18281 (delta 295)
fatal: The remote end hung up unexpectedly
Everything up-to-date
Please increase the value of http.postBuffer.
# 1GB
git config http.postBuffer 1024000000
You can use GitPrep via reverse proxy access
---------------------------- ------------
---->| Web Server(Reverse proxy)|---->|GitPrep |
<----| (Apache, etc) |<----| |
---------------------------- ------------
I show apache config example. You can use Name virtual host.
# HTTP
<VirtualHost *:80>
ServerName myhost.com
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / http://localhost:10020/ keepalive=On
ProxyPassReverse / http://localhost:10020/
RequestHeader set X-Forwarded-Proto "https"
</VirtualHost>
If you use GitPrep vis https, you should set X-Forwarded-HTTPS Request Header.
# HTTPS
<VirtualHost *:443>
ServerName myhost.com
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / http://localhost:10020/ keepalive=On
ProxyPassReverse / http://localhost:10020/
RequestHeader set X-Forwarded-Proto "https"
</VirtualHost>
GitPrep support reverse proxy with sub directory.
At first, set [reverse_proxy]path_depth option.
[reverse_proxy]
;;; Reverse proxy path depth (default: none)
;;; If proxy path is http://somehost.com/foo, you set path_depth to 1.
;;; If proxy path is http://somehost.com/foo/bar, you set path_depth to 2.
path_depth=1
Next you set http server config file. The following is apache example.
<VirtualHost *:80>
ServerName perlcodesample.com
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyRequests Off
ProxyPreserveHost On
ProxyPass /app1 http://localhost:10020/app1 keepalive=On
ProxyPassReverse /app1 http://localhost:3000/app1
ProxyPass /app2 http://localhost:10021/app2 keepalive=On
ProxyPassReverse /app2 http://localhost:3001/app2
RequestHeader set X-Forwarded-Proto "https"
</VirtualHost>
You can import already existing repositories by script/import_rep script.
cd script
./import_rep -u kimoto rep_dir
-u is user name. rep_dir must contains git respoitories like the following.
rep_dir/project1.git
/project2.git
/project3.git
/project3.git
If description file exists in git repository, it is copied.
This is GitPrep bug before version 1.5.1. Please use after version 1.5.2.
If you continue to use GitPrep before version 1.5.1, collaboration table is broken. Please fix it by the following way.
# Run SQLite client
sqlite3 data/gitprep.db
# drop collaboration table
drop table collaboration;
# Restart
./gitprep
OK. GitPrep suport time zone. You can set time_zone option in conig file.
[basic]
;;; Time Zone
;;; GitPrep time zone is GMT by default
;;; You can set your local time zone.
time_zone=+9:00
1. Use symbolic link and ssh_rep_url_base option
At first, set [basic]ssh_rep_url_base option to /git
;;; SSH repository url base
; For exampke, If you set this value to /git, SSH repository url become
; ssh://kimoto@59.106.185.196/git/kimoto/gitprep.git
ssh_rep_url_base=/git
And you create symbolic link to /home/gitprep/gitprep/data/rep
cd /
ln -s /home/gitprep/gitprep/data/rep /git
chown gitprep:gitprep /git
2. Use only public key authentication and set [basic]ssh_rep_url_base to empty
If you use only public key authentication, you can access ssh repository using the following url.
ssh://kimoto@59.106.185.196/kimoto/gitprep.git
If you set [basic]ssh_rep_url_base to empty string, this URL is shown on Browser.
;;; SSH repository url base
; For exampke, If you set this value to /git, SSH repository url become
; ssh://kimoto@59.106.185.196/git/kimoto/gitprep.git
ssh_rep_url_base=
You can get atom feed of commits page by the following URL
http://somehost.com/kimoto/gitprep/commits/master.atom
You can manage the application from the root user.
Start the application
sudo -u gitprep /home/gitprep/gitprep/gitprep
Stop the application
sudo -u gitprep /home/gitprep/gitprep/gitprep --stop
If you want to start the application when the OS starts, add the start application command to rc.local(Linux).
If you want to make it easy to manage gitprep, then create a run script.
mkdir -p /webapp
echo '#!/bin/sh' > /webapp/gitprep
echo 'su - gitprep -c "/home/gitprep/gitprep/gitprep $*"' >> /webapp/gitprep
chmod 755 /webapp/gitprep
You can start and stop the application with the following command.
# Start or Restart
/webapp/gitprep
# Stop
/webapp/gitprep --stop
GitPrep 2.0 drop support Perl 5.8.7 because latest Mojolicious don't support Perl 5.8.
You can choice two selection.
1. use GitPrep 1.xx
GitPrep 1.xx support Perl 5.8.7+. You can use GitPrep v1.12.
https://github.com/yuki-kimoto/gitprep/archive/v1.12.tar.gz
You can see version 1.12 document.
2. You can install your local perl by perlbrew.
http://perlbrew.pl/
perlbrew is very useful perl installation tools without breaking your system perl.
If you install perl 5.10.1+ by perlbrew, you can install latest GitPrep.
You can upgrade GitPrep 2.0 the following command.
./setup_module
./setup_database
And you should know the following small changes.
1. X-Forwarded-HTTPS header is deprecated. use X-Forwarded-Proto header.
# This is deprecated in GitPrep 2.0
RequestHeader set X-Forwarded-HTTPS "1"
# Use X-Forwarded-Proto instead
RequestHeader set X-Forwarded-Proto "https"
2. remove [basic]show_ignore_space_change_link option
remove [basic]show_ignore_space_change_link option. and move this feature to project settings page.
# Go to settings page in your project
/kimoto/gitprep/settings
3. remove [basic]show_ignore_space_change_link option
remove [basic]show_ignore_space_change_link option. but enable this feature on in project settings page.
# Go to settings page in your project
/kimoto/gitprep/settings
4. remove [basic]encoding_suspects option
remove [basic]encoding_suspects option and move this feature to project settings page.
# Go to settings page in your project
/kimoto/gitprep/settings
**5. mail is required for user registration.
mail address is require for user registration.
If you are a developer, you can start the application in development mode.
./morbo
Then access the following URL.
http://localhost:3000
If you have git, it is easy to install from git.
git clone git://github.com/yuki-kimoto/gitprep.git
It is useful to write configuration in gitprep.my.conf, not gitprep.conf.
These are my Perl web application projects.
If you find bug, plese tell me on GitHub issue.
Please post only bug information.
You can ask questions about usage of GitPrep in this mailing list.
If you want new features, please post the request to this mailing list.
Copyright 2012-2014 Yuki Kimoto. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.