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

[DEPRECATED] Sourcecode of Gitonomy website

Notifications You must be signed in to change notification settings

gitonomy/website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gitonomy website

This is sourcecode of gitonomy.com.

Installation

First, clone repository to local folder, using git:

$ cd /var/www
$ git clone [email protected]: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>