mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-11 15:12:37 +01:00
Adding link to USB drive installation PDF.
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.
|
||||
|
|
|
|||
13
files/20090516000646_add_todo_dependency_support.rb.txt
Normal file
13
files/20090516000646_add_todo_dependency_support.rb.txt
Normal file
|
|
@ -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
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
|
||||
BIN
files/TracksWindowsUSBInstall.pdf
Normal file
BIN
files/TracksWindowsUSBInstall.pdf
Normal file
Binary file not shown.
BIN
images/action_form_with_predecessor2.png
Normal file
BIN
images/action_form_with_predecessor2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
BIN
images/project_view_with_dependencies2.png
Normal file
BIN
images/project_view_with_dependencies2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
BIN
images/todo_fsm.png
Normal file
BIN
images/todo_fsm.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
Loading…
Add table
Add a link
Reference in a new issue