Adding link to USB drive installation PDF.

bsag 2011-07-16 18:15:09 +01:00
parent d075c22acb
commit 969a5d7d2c
7 changed files with 55 additions and 2 deletions

@ -7,7 +7,7 @@ The most up-to-date instructions can be found in the manual on the "homepage":ht
h2. Specific instructions for various platforms:
* [[MacOS X]]
* [[Windows]]
* [[Windows]] (or install on a USB stick using [[this guide|/files/TracksWindowsUSBInstall.pdf]])
* [[Windows 7 64 bit]]
* [[Linux Debian]]
* [[Linux Ubuntu]]
@ -32,4 +32,4 @@ Installing Tracks on a webhost's server
* [[Stablehost]]
* [[Mavenhosting service - CentOS and cPanel]]
for reference you can find a copy of the [[Database schema]] from 1.8devel. You may need to migrate it to the latest version though.
for reference you can find a copy of the [[Database schema]] from 1.8devel. You may need to migrate it to the latest version though.

@ -0,0 +1,13 @@
class AddTodoDependencySupport < ActiveRecord::Migration
def self.up
create_table :dependencies do |t|
t.integer :todo_id, :null => false
t.integer :predecessor_id, :null => false
t.string :relationship_type
end
end
def self.down
drop_table :dependencies
end
end

40
files/S99tracks.txt Normal file

@ -0,0 +1,40 @@
#!/sbin/sh
#
basedir=/opt/tracks-1.7
if [ ! -d $basedir ]; then
exit 0
fi
case "$1" in
'start')
cd $basedir
/usr/bin/ruby script/server -e production -d
echo `pgrep ruby` > webrick.pid
;;
'stop')
cd $basedir
if [ -f webrick.pid ]; then
kill -9 `cat webrick.pid`
rm -f webrick.pid
fi
;;
'restart')
cd $basedir
if [ -f webrick.pid ]; then
kill -9 `cat webrick.pid`
rm -f webrick.pid
fi
/usr/bin/ruby script/server -e production -d
echo `pgrep ruby` > webrick.pid
;;
*)
echo "Usage: $0 { start | stop | restart }"
exit 1
;;
esac
exit 0

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
images/todo_fsm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB