25 lines
406 B
Plaintext
25 lines
406 B
Plaintext
=== Basic bootstrap
|
|
|
|
* rake db:drop db:setup
|
|
|
|
==
|
|
|
|
=== Setup autostart
|
|
|
|
Add to /etc/rc.d/rc.local
|
|
|
|
/srv/rosa_build/current/bin/autostart.sh
|
|
|
|
Add to /etc/rc.d/rc.sysinit
|
|
|
|
# force run rc.local
|
|
if [ -f /etc/rc.local ]; then
|
|
. /etc/rc.local
|
|
fi
|
|
|
|
=== Tips
|
|
sudo urpmi lib64icu-devel # mandriva
|
|
gem install charlock_holmes -- --with-icu-dir=/opt/local # macports
|
|
|
|
git config --global core.quotepath false
|