This is a forked version of Gitlist that contains edits used for my own purposes on https://repos.brandonrozek.com
For the main project, please go to https://github.com/klaussilveira/gitlist
In order to run GitList on your server, you'll need:
- git
- Apache with mod_rewrite enabled or nginx
- PHP 5.3.3
- Download GitList from gitlist.org and decompress to your
/var/www/gitlistfolder, or anywhere else you want to place GitList. - Do not download a branch or tag from GitHub, unless you want to use the development version. The version available for download at the website already has all dependencies bundled, so you don't have to use composer or any other tool
- Rename the
config.ini-examplefile toconfig.ini. - Open up the
config.iniand configure your installation. You'll have to provide where your repositories are located. - In case GitList isn't accessed through the root of the website, open .htaccess and edit RewriteBase (for example, /gitlist/ if GitList is accessed through http://localhost/gitlist/).
- Create the cache folder and give read/write permissions to your web server user:
cd /var/www/gitlist
mkdir cache
chmod 777 cache
That's it, installation complete! If you're having problems, check the Troubleshooting page.
- Klaus Silveira (Creator, developer)