root/Trunk/README

Revision 1355, 1.0 KB (checked in by todd, 3 years ago)

eod: OMG, it almost renders pages again!

Line 
1TurtolCMS -- the Turtol Content Management System
2
3Copyright 2006-2009 by Todd D. Esposito.  All Rights Reservered.
4
5Licensed under the GNU Affero General Public Library, version 3.0.
6(See COPYING)
7
8The Turtol CMS is a database-driven web site builder, web application
9platform and content management system.  The server-side code is all
10python; the client-side interface is realized in JavaScript.  JSON
11and XHR connect the two sides.
12
13INSTALLATION:
14  Please see http://www.turtolcms.org for full instructions.
15
16QUICKSTART (using mod_wsgi):
17   Run:
18     python setup.py install
19
20   Then configure apache thus:
21
22     SetEnv TCMS_DBURI {your-database-uri}
23     WSGIScriptAlias /TurtolCMS /{path-to-turtolcms-package}/TurtolCMS/WsgiEntryPoint.py
24     # Or use whatever alias you want, including "/"
25     <Directory /{path-to-turtolcms-package}/TurtolCMS>
26       Order allow,deny
27       allow from all
28     </Directory>
29
30  The database URI takes the form:
31      engine://user:password@host[:port]/databasename 
32 
Note: See TracBrowser for help on using the browser.