Skip to content

Instantly share code, notes, and snippets.

@joshwnj
Created July 18, 2011 09:53
Show Gist options
  • Save joshwnj/1089055 to your computer and use it in GitHub Desktop.
Save joshwnj/1089055 to your computer and use it in GitHub Desktop.
Setting up heroized locally
For apache virtualhost you just need something simple like this:
<VirtualHost *:80>
ServerName heroized
DocumentRoot /vagrant/heroized
<Directory /vagrant/heroized>
Options Indexes FollowSymLinks
AllowOverride all
</Directory>
</VirtualHost>
Next you need to link to the "dev" environment. This environment is using a remote instance of couchdb (http://x-team.iriscouch.com/) which means you don't need to install couchdb yourself.
cd heroized/env/
ln -s dev/ _current
Then finally, run the build script:
cd heroized/
php cmd/build.php
If you don't get any errors there, you should be right to go.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment