|
Revision 1355, 1.0 KB
(checked in by todd, 3 years ago)
|
|
eod: OMG, it almost renders pages again!
|
| Line | |
|---|
| 1 | TurtolCMS -- the Turtol Content Management System |
|---|
| 2 | |
|---|
| 3 | Copyright 2006-2009 by Todd D. Esposito. All Rights Reservered. |
|---|
| 4 | |
|---|
| 5 | Licensed under the GNU Affero General Public Library, version 3.0. |
|---|
| 6 | (See COPYING) |
|---|
| 7 | |
|---|
| 8 | The Turtol CMS is a database-driven web site builder, web application |
|---|
| 9 | platform and content management system. The server-side code is all |
|---|
| 10 | python; the client-side interface is realized in JavaScript. JSON |
|---|
| 11 | and XHR connect the two sides. |
|---|
| 12 | |
|---|
| 13 | INSTALLATION: |
|---|
| 14 | Please see http://www.turtolcms.org for full instructions. |
|---|
| 15 | |
|---|
| 16 | QUICKSTART (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 | |
|---|