Octopush

View the Project on GitHub /olx-inc/octopush

Quickstart for developers

Octopush is built on PHP and MySql but some other tools are used for its development:

So to start developing follow the steps below (the procedure to install each item will depend on your OS):

Apache configuration

<VirtualHost *:80> ServerName octopush.com ServerAlias demo.octopush.com DocumentRoot "/var/www/octopush/" <Directory "/var/www/octopush"> Options -MultiViews AllowOverride None RewriteEngine On #RewriteBase /path/to/app RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] ErrorLog /var/log/octopush/error_log CustomLog /var/log/octopush/access_log combined </Directory> </VirtualHost>