Skip to content
This repository was archived by the owner on Apr 28, 2024. It is now read-only.

Commit 946c273

Browse files
committed
Updating installation instructions, going to 0.2
1 parent 3479833 commit 946c273

File tree

3 files changed

+27
-10
lines changed

3 files changed

+27
-10
lines changed

README.md

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,14 @@ You can also see a live demo [here](http://git.gofedora.com).
3838
In order to run GitList on your server, you'll need:
3939

4040
* git
41-
* Apache and mod_rewrite enabled
41+
* Apache with mod_rewrite enabled or nginx
4242
* PHP 5.3.3
4343

4444
## Installing
45-
Download the GitList latest package and decompress to your `/var/www/gitlist` folder, or anywhere else you want to place GitList. You can also clone the repository:
46-
47-
```
48-
git clone https://github.com/klaussilveira/gitlist.git /var/www/gitlist
49-
```
50-
51-
Rename the `config.ini-example` file to `config.ini`. Now open up the `config.ini` and configure your installation. You'll have to provide where your repositories are located and the base GitList URL (in our case, http://localhost/gitlist). Now, let's create the cache folder and give the correct permissions:
45+
* Download GitList from [gitlist.org](http://gitlist.org/) and decompress to your `/var/www/gitlist` folder, or anywhere else you want to place GitList.
46+
* Rename the `config.ini-example` file to `config.ini`.
47+
* Open up the `config.ini` and configure your installation. You'll have to provide where your repositories are located and the base GitList URL (in our case, http://localhost/gitlist).
48+
* Create the cache folder and give the correct permissions:
5249

5350
```
5451
cd /var/www/gitlist
@@ -58,5 +55,25 @@ chmod 777 cache
5855

5956
That's it, installation complete! If you're having problems, check this [tutorial](http://gofedora.com/insanely-awesome-web-interface-git-repos/) by Kulbir Saini or the [Troubleshooting](https://github.com/klaussilveira/gitlist/wiki/Troubleshooting) page.
6057

58+
## Building
59+
GitList uses [Composer](http://getcomposer.org/) to manage dependencies and [Ant](http://ant.apache.org/) to build the project. In order to run all the targets in the build script, you will need [PHPUnit](http://www.phpunit.de/), [phpcpd](https://github.com/sebastianbergmann/phpcpd), [phploc](https://github.com/sebastianbergmann/phploc), [PHPMD](http://phpmd.org/) and [PHP_Depend](http://pdepend.org).
60+
61+
Once you have all the dependencies set, you can clone the repository and run Ant:
62+
63+
```
64+
git clone https://github.com/klaussilveira/gitlist.git
65+
ant
66+
```
67+
68+
If you just want to get the project dependencies, instead of building everything:
69+
70+
```
71+
git clone https://github.com/klaussilveira/gitlist.git
72+
curl -s http://getcomposer.org/installer | php
73+
php composer.phar install
74+
```
75+
76+
If you have Composer in your path, things get easier. But you know the drill.
77+
6178
## Further information
6279
If you want to know more about customizing GitList, check the [Customization](https://github.com/klaussilveira/gitlist/wiki/Customizing) page on the wiki. Also, if you're having problems with GitList, check the [Troubleshooting](https://github.com/klaussilveira/gitlist/wiki/Troubleshooting) page. Don't forget to report issues and suggest new features! :)

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* GitList 0.1
4+
* GitList 0.2
55
* https://github.com/klaussilveira/gitlist
66
*/
77

views/navigation.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<a class="brand" href="{{ baseurl }}">GitList</a>
1010
<div class="nav-collapse">
1111
<ul class="nav pull-right">
12-
<li><a href="https://github.com/klaussilveira/gitlist/">About</a></li>
12+
<li><a href="http://gitlist.org/">About</a></li>
1313
<li><a href="https://github.com/klaussilveira/gitlist/issues/new">Report bug</a></li>
1414
<li><a href="https://github.com/klaussilveira/gitlist/wiki">Help</a></li>
1515
</ul>

0 commit comments

Comments
 (0)