-
Add 127.0.0.1 yayhooray.dev to /etc/hosts
-
Clone https://github.com/castis/seaforium to your github account
$ git clone [email protected]:%YOURNAME%/seaforium.git $ cd seaforium
Then follow the instructions for your platform
$ sudo apt-get install tasksel python-pip
$ sudo tasksel install lamp-server
$ sudo pip install simplejson lxml MySQL-Python requests
$ cp conf/yayhooray.conf.default conf/yayhooray.conf
$ cp application/config/config.default.php application/config/config.php
$ cp application/config/database.default.php application/config/database.php
$ cp tests/yay.ini.default tests/yay.ini
In the above files replace the required values, replacements are marked by %REPLACE%
$ sudo ln -s %FORUM_ROOT%/conf/yayhooray.conf /etc/apache2/sites-available/yayhooray.conf
$ sudo a2enmod rewrite
$ sudo a2ensite yayhooray.conf
$ sudo service apache2 reload
$ ./yayclient reset
Now open http://yayhooray.dev in your browser and you should be good to go :)
$ sudo pip install simplejson lxml MySQL-Python requests
Install XCode from the App Store
Download and Install mysql from http://www.mysql.com/downloads/mysql/ add the following to you .bashrc
file.
$ export PATH=/usr/local/mysql/:$PATH
$ export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/
Open System Preferences -> Sharing
and enable Web Sharing
open /etc/apache2/httpd.conf and uncomment
#LoadModule php5_module libexec/apache2/libphp5.so
Enable the php ini
$ sudo cp /etc/php.ini.default /etc/php.ini
Edit /etc/php.ini
mysqli.default_socket = /tmp/mysql.sock
Copy over the config files
$ cp conf/yayhooray.conf.default conf/yayhooray.conf
$ cp application/config/config.default.php application/config/config.php
$ cp application/config/database.default.php application/config/database.php
$ cp tests/yay.ini.default tests/yay.ini
In the above files replace the required values, replacements are marked by %REPLACE%
$ sudo ln -s /Users/daleharvey/src/seaforium/conf/yayhooray.conf /etc/apache2/users/yayhooray.conf
$ sudo apachectl restart
Now open http://yayhooray.dev in your browser and you should be good to go :)
$ sudo apt-get install sphinxsearch
$ sudo cp seaforium/conf/sphinx.conf.default /etc/sphinxsearch/sphinx.conf
Edit sphinx.conf to set your paths correctly if anything was changed. (make sure sphinx can access log files and MySQL).
$ indexer --conf /etc/sphinxsearch/sphinx.conf --all
$ sudo start sphinxsearch
Download and install the binaries from http://sphinxsearch.com/files/sphinx-2.0.2-beta-win32.zip I installed mine to C:\sphinx
Copy seaforium\conf\sphinx.conf to C:\sphinx. Run 'cmd'
> cd C:\sphinx
> bin\indexer --config sphinx.conf --all
> bin\searchd --install --config sphinx.conf --servicename Sphinx
Restart Apache
Contributing to the codebase is done via pull requests, this lets us test and work on the feature while it is being developed
Create a feature branch
$ git remote add castis [email protected]:castis/seaforium.git
$ git branch -m feature
Code Stuff ...
$ git stash
$ git pull --rebase castis master
$ git stash apply
$ git commit -m "A nice commit message"
Ensure you have the up to date code before submitting, try to avoid merge commits
$ ./yayclient test
The test suite must pass before any code is merged, if you are coding a new feature or fixing a bug in the server then you should make a test to verify your feature / fix works.
$ git push origin feature