diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..93fb378 --- /dev/null +++ b/README.rst @@ -0,0 +1,31 @@ +Gitonomy website +================ + +This is sourcecode of `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 `_. + +.. 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 + + + ServerName gitonomy.com + DocumentRoot /var/www/website +