JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
updated documentation, and source link
[contractor-progress.git] / INSTALL
diff --git a/INSTALL b/INSTALL
index 1fccecb..88e7772 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -8,14 +8,17 @@ System Requirements:
 
 You'll also need a recent version of wfpl in code/wfpl:
 
+       If you've cloned a recent version with git, you should get it
+       automatically. Otherwise:
+
        $ cd code
-       $ git clone git://github.com/JasonWoof/wfpl.git
+       $ git clone git://gitorious.org/wfpl/wfpl.git
 
 Apache settings:
 
        There is .htaccess file with all the needed settings. You may need to
        change apache's AllowOverride directive to allow these settings to be
-       changed in the .htaccessfile.
+       changed in the .htaccess file.
 
        Also, since mod_rewrite does not allow you to redirect to relative URLs,
        you'll have to edit the rewrite rules if you don't install this at the
@@ -33,8 +36,13 @@ Database:
        code/wfpl/examples/session.sql
 
        Create the Contractor account:
+
                go to /logout in browser (this creates a session)
-               in mysql do: insert into wfpl_session_data (name,value,session_id) values("auth_username", "1", (select id from wfpl_sessions limit 1));
-               Then go to /people in your browser and create your account (first account created is administrator/contractor)
+
+               in mysql do: insert into wfpl_session_data (name,value,session_id)
+               values("auth_username", "1", (select id from wfpl_sessions limit 1));
+
+               Then go to /people in your browser and create your account (first
+               account created is administrator/contractor)
        
-       Now you can create accounts for your customers, and/or create tasks for yourself.
+       Now you can create accounts for your customers.