Difference between revisions of "InstallingAboutUsOnOSX"

(Misc. Libraries)
(Ruby)
Line 18: Line 18:
 
* ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p249.tar.gz
 
* ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p249.tar.gz
  
<code>
+
Build:
./configure --prefix=/www
+
  ./configure --prefix=/www
 
+
  make
make
+
  make install
 
 
make install
 
  
 
(edit .profile like so:)
 
(edit .profile like so:)
export PATH=/www/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:$PATH
+
  export PATH=/www/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:$PATH
 
 
</code>
 
  
 
==RubyGems==
 
==RubyGems==

Revision as of 20:21, 2 February 2010

Xcode tools

Git

MacPorts

Download and install:

MySQL

Download and install. Make sure you get version 5.0!

Ruby

Download and install version 1.8.7p174

Build:

 ./configure --prefix=/www
 make
 make install

(edit .profile like so:)

 export PATH=/www/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:$PATH

RubyGems

Download and install version 1.3.5

ruby setup.rb

Misc. Libraries

Run these commands:

 sudo port install freeimage
 sudo port install gd2
 gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
 mkdir -p /www/aboutus ;
 cd /www/aboutus
 git clone :AboutUs/compostus.git
 git clone :AboutUs/electric_sheep.git
 cd /www/aboutus/compostus/compost
 gem install geminstaller
 geminstaller

Configure the app

This is a stub. Tasks are:

  • create databases
 mysql -u root
 create database compostus_wiki_test;
 create database compostus_wiki_dev;
 grant all on *.* to wiki@localhost identified by 'wiki';
  • run rake
 cd /www/aboutus/compostus/compost
 rake
  • run server


Retrieved from "http://aboutus.com/index.php?title=InstallingAboutUsOnOSX&oldid=20089808"