Changes between Version 8 and Version 9 of faq/setup-development-workstation


Ignore:
Timestamp:
Mar 6, 2008, 4:34:41 PM (16 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • faq/setup-development-workstation

    v8 v9  
    116116mysql -u root -p -e "CREATE DATABASE mfpl; GRANT ALL ON mfpl.* to 'mfpl'@'localhost' identified by 'mfpl';"
    117117}}}
    118  * Create a your project folders with:
     118 * Add a new domain to your /etc/hosts file. Add it to the line that starts with 127.0.1.1 (you can safely create the line if it doesn't exist). For example:
     119{{{
     120127.0.0.1       localhost
     121127.0.1.1       fidel.sunsetpark.mayfirst.org   fidel mfpl.fidel
     122}}}
     123 * Change into your proects directory:
     124{{{
     125cd ~/projects
     126}}}
     127 * Checkout your src files via svn
     128{{{
     129 svn co svn+ssh://svn.mayfirst.org/srv/svn/mfpl/trunk/mfpl
     130}}}
     131 * OR create your project folders with:
    119132{{{
    120133mkdir ~/projects/mfpl
     
    122135mkdir ~/projects/mfpl/cgi-bin
    123136}}}
    124  * Add a new domain to your /etc/hosts file. Add it to the line that starts with 127.0.1.1 (you can safely create the line if it doesn't exist). For example:
    125 {{{
    126 127.0.0.1       localhost
    127 127.0.1.1       fidel.sunsetpark.mayfirst.org   fidel mfpl.fidel
    128 }}}
    129137
    130138Now you are ready to begin. You can start placing files in your project's web directory and access your project at the URL: !http://mfpl.fidel/