summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-10-27 13:20:53 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-10-27 13:20:53 -0400
commit3758c87540e8ccf8f0604fb9157d71d99181b25e (patch)
treeebce4e59ee90560591b2ccdbd7c4d5706155662f
parent2be17ad0ee691b3d53be102068b01c423f856361 (diff)
downloadaskbot-3758c87540e8ccf8f0604fb9157d71d99181b25e.tar.gz
askbot-3758c87540e8ccf8f0604fb9157d71d99181b25e.tar.bz2
askbot-3758c87540e8ccf8f0604fb9157d71d99181b25e.zip
incremented version and moved install doc file to askbot/docs directory
-rw-r--r--askbot/__init__.py2
-rw-r--r--askbot/docs/INSTALL (renamed from askbot/doc/INSTALL)7
-rw-r--r--askbot/setup_templates/settings.py2
3 files changed, 6 insertions, 5 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 62387bbd..b29f4ff7 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -22,7 +22,7 @@ def get_version():
"""returns version of the askbot app
this version is meaningful for pypi only
"""
- return '0.6.17'
+ return '0.6.18'
#todo: maybe send_mail functions belong to models
#or the future API
diff --git a/askbot/doc/INSTALL b/askbot/docs/INSTALL
index a24ad236..37c55fb6 100644
--- a/askbot/doc/INSTALL
+++ b/askbot/docs/INSTALL
@@ -1,9 +1,7 @@
Askbot is a Question and Answer (Q&A) forum whose design is inspired by StackOverflow_
and YahooAnswers_ and other similar projects (to lesser extent).
-Askbot is written in Python_ on top of Django_ platform.
-Code of Askbot grew out of CNPROG_ project originally written by
-`Mike Chen <http://cn.linkedin.com/in/mikegangchen>`_ and Sailing Cai.
+Askbot is written in Python_ on top of Django_ platform and supports MySQL and PostgeSQL database backends.
If you have any questions installing or tweaking askbot - please do not hesitate to ask
at the forum_ or email to admin@askbot.org.
@@ -11,3 +9,6 @@ at the forum_ or email to admin@askbot.org.
Online documentation is available at: http://askbot.org/doc/index.html
Also there is an - offline copy of the documentation in askbot/doc/source
+
+Code of Askbot grew out of CNPROG_ project originally written by
+`Mike Chen <http://cn.linkedin.com/in/mikegangchen>`_ and Sailing Cai.
diff --git a/askbot/setup_templates/settings.py b/askbot/setup_templates/settings.py
index 86625903..92246337 100644
--- a/askbot/setup_templates/settings.py
+++ b/askbot/setup_templates/settings.py
@@ -17,7 +17,7 @@ ADMINS = (
MANAGERS = ADMINS
-DATABASE_ENGINE = 'mysql' # only mysql is supported, more will be in the near future
+DATABASE_ENGINE = 'postgresql_psycopg2' # only postgres (>8.3) and mysql are supported so far others have not been tested yet
DATABASE_NAME = '' # Or path to database file if using sqlite3.
DATABASE_USER = '' # Not used with sqlite3.
DATABASE_PASSWORD = '' # Not used with sqlite3.