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

Latest commit

 

History

History
31 lines (20 loc) · 716 Bytes

README.rst

File metadata and controls

31 lines (20 loc) · 716 Bytes

Gitonomy website

This is sourcecode of gitonomy.com.

Installation

First, clone repository to local folder, using git:

$ 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.

$ cd /var/www/website
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar install

Finally, create a Apache host to web/ folder:

<VirtualHost *:80>
    ServerName gitonomy.com
    DocumentRoot /var/www/website
</VirtualHost>