Edgewall Software

Changes between Version 10 and Version 11 of TracOnUbuntu


Ignore:
Timestamp:
Apr 6, 2005, 12:54:59 AM (19 years ago)
Author:
bryan@…
Comment:

minor edits - curly braces around 'YourProjectNameHere'

Legend:

Unmodified
Added
Removed
Modified
  • TracOnUbuntu

    v10 v11  
    4040
    4141----
    42 NOTE: Throughout the rest of this text I use '''YourProjectNameHere''' as the project name. Clearly, you'll want to replace this with a name for your own project!
     42NOTE: Throughout the rest of this text I use {{{YourProjectNameHere}}} as the project name. Clearly, you'll want to replace this with a name for your own project!
    4343----
    4444
     
    126126}}}
    127127
    128 I installed my Subversion repository at '''/var/svn/YourProjectNameHere'''. So I did a quick starting config of subversion with the following commands:
     128I installed my Subversion repository at {{{/var/svn/YourProjectNameHere}}}. So I did a quick starting config of subversion with the following commands:
    129129{{{
    130130sudo mkdir /var/svn
     
    146146}}}
    147147
    148 Test by web-browsing to '''!http://servername/svn/YourProjectNameHere'''
     148Test by web-browsing to {{{http://servername/svn/YourProjectNameHere}}}
    149149
    150150If you see a simple web page which says '''Revision 1: /''' and lists ''branches'', ''tags'', and ''trunk'', your Subversion install is up and running!
     
    152152Now let's finish the Trac install (but don't go on to Trac install until you have the above working properly).
    153153
    154 I put my trac environment at /var/trac/YourProjectNameHere. Of course you could use any other path or name - something a little more descriptive of ''your'' project would probably be a good idea. First I ran these commands:
     154I put my trac environment at {{{/var/trac/YourProjectNameHere}}}. Of course you could use any other path or name - something a little more descriptive of ''your'' project would probably be a good idea. First I ran these commands:
    155155{{{
    156156sudo mkdir /var/trac
     
    158158sudo chown -R www-data /var/trac/YourProjectNameHere
    159159}}}
    160 The "trac-admin" command above prompted me to enter:
     160The "trac-admin" command shown above prompted me to enter:
    161161
    162  * the project name (''YourProjectNameHere'')
    163  * the path to svn repository (''var/svn/YourProjectNameHere'')
    164  * the path to the Trac templates directory (''usr/share/trac/templates'')
     162 * the project name ({{{YourProjectNameHere}}})
     163 * the path to svn repository ({{{var/svn/YourProjectNameHere}}})
     164 * the path to the Trac templates directory ({{{usr/share/trac/templates}}})
    165165
    166166... then it prints out a bunch of stuff. If there are no errors you should now be able to surf to your Trac site at '''!http://servername/cgi-bin/trac.cgi'''