Skip to content
This repository was archived by the owner on Apr 12, 2020. It is now read-only.
/ website Public archive

Commit

Permalink
add a README
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandresalome committed Feb 28, 2014
1 parent f55e9e3 commit c396d65
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Gitonomy website
================

This is sourcecode of `gitonomy.com <http://gitonomy.com>`_.

Installation
------------

First, clone repository to local folder, using **git**:

.. code-block:: bash
$ cd /var/www
$ git clone git@github.com:gitonomy/website.git
When it's done, go to the downloaded directory and install your dependencies with `composer <http://getcomposer.org>`_.

.. code-block:: bash
$ cd /var/www/website
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar install
Finally, create a Apache host to *web/* folder:

.. code-block:: apache
<VirtualHost *:80>
ServerName gitonomy.com
DocumentRoot /var/www/website
</VirtualHost>

0 comments on commit c396d65

Please sign in to comment.