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

Commit c396d65

Browse files
author
alexandresalome
committed
add a README
1 parent f55e9e3 commit c396d65

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

README.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Gitonomy website
2+
================
3+
4+
This is sourcecode of `gitonomy.com <http://gitonomy.com>`_.
5+
6+
Installation
7+
------------
8+
9+
First, clone repository to local folder, using **git**:
10+
11+
.. code-block:: bash
12+
13+
$ cd /var/www
14+
$ git clone git@github.com:gitonomy/website.git
15+
16+
When it's done, go to the downloaded directory and install your dependencies with `composer <http://getcomposer.org>`_.
17+
18+
.. code-block:: bash
19+
20+
$ cd /var/www/website
21+
$ curl -sS https://getcomposer.org/installer | php
22+
$ php composer.phar install
23+
24+
Finally, create a Apache host to *web/* folder:
25+
26+
.. code-block:: apache
27+
28+
<VirtualHost *:80>
29+
ServerName gitonomy.com
30+
DocumentRoot /var/www/website
31+
</VirtualHost>

0 commit comments

Comments
 (0)