a92f1d0d9d1530cc0bd152ea3dd989dc623b6b9f

Author: gwoo

Date: 2009-12-29 12:40:35 -0800

updating install docs

diff --git a/INSTALL.txt b/INSTALL.txt new file mode 100644 index 0000000..c35e44d --- /dev/null +++ b/INSTALL.txt @@ -0,0 +1,47 @@ +GETTING STARTED + +If you have CakePHP 1.3, and have setup the cake to be in your PATH +git clone git@thechaw.com:chaw.git +cd chaw +cake bake db_config +cake schema create Chaw +visit, http://localhost/chaw/ + +otherwise, +cd /your/document_root +git clone git://github.com/cakephp/cakephp1x.git +cd cakephp1x +git checkout -b 1.3 origin/1.3 + +git clone git@thechaw.com:chaw.git +cd chaw +../cake/console/cake -app chaw bake db_config +../cake/console/cake -app chaw schema create +visit, http://localhost/chaw/ + + + +FOR GIT +make sure "git" is in $PATH + +create the users... + +on OSX +http://osxdaily.com/2007/10/29/how-to-add-a-user-from-the-os-x-command-line-works-with-leopard/ +sudo dscl . -create /Users/git +sudo dscl . -create /Users/git UserShell /bin/bash +sudo dscl . -create /Users/git NFSHomeDirectory /path/to/chaw/content/git/repo + +sudo dscl . -create /Users/svn +sudo dscl . -create /Users/svn UserShell /bin/bash +sudo dscl . -create /Users/svn NFSHomeDirectory /path/to/chaw/content/svn/repo + +on *nix +http://blog.drewolson.org/2008/05/remote-git-repos-on-ubuntu-right-way.html +adduser ... + + +GOTCHAS +-/etc/sshd_config +AllowUsers is all or has the git and svn users +StrictModes no diff --git a/docs/INSTALL.txt b/docs/INSTALL.txt deleted file mode 100644 index 20a5281..0000000 --- a/docs/INSTALL.txt +++ /dev/null @@ -1,47 +0,0 @@ -GETTING STARTED - -If you have CakePHP 1.3, and have setup the cake to be in your PATH -git clone git@thechaw.com:chaw.git -cd chaw -cake bake db_config -cake schema create Chaw -visit, http://localhost/chaw/ - -otherwise, -cd /your/document_root -git clone git@code.cakephp.org:cakephp.git -cd cakephp -git checkout -b 1.3-dev 1.3-dev - -git clone git@thechaw.com:chaw.git -cd chaw -../cake/console/cake --app=chaw bake db_config -../cake/console/cake --app=chaw schema create -visit, http://localhost/chaw/ - - - -FOR GIT -make sure "git" is in $PATH - -create the users... - -on OSX -http://osxdaily.com/2007/10/29/how-to-add-a-user-from-the-os-x-command-line-works-with-leopard/ -sudo dscl . -create /Users/git -sudo dscl . -create /Users/git UserShell /bin/bash -sudo dscl . -create /Users/git NFSHomeDirectory /path/to/chaw/content/git/repo - -sudo dscl . -create /Users/svn -sudo dscl . -create /Users/svn UserShell /bin/bash -sudo dscl . -create /Users/svn NFSHomeDirectory /path/to/chaw/content/svn/repo - -on *nix -http://blog.drewolson.org/2008/05/remote-git-repos-on-ubuntu-right-way.html -adduser ... - - -GOTCHAS --/etc/sshd_config -AllowUsers is all or has the git and svn users -StrictModes no