summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Chen <mike@vm-ubuntu.(none)>2009-10-15 00:27:04 +0800
committerMike Chen <mike@vm-ubuntu.(none)>2009-10-15 00:27:04 +0800
commit18f1a07afed3208ef4424305da8c6b1a34cf3aed (patch)
tree6e5bec98b440fe20ef9e6f9c8d095e86174f3416
parentb1085dec13052fa9ff64b53ed292f1ad61064cac (diff)
downloadaskbot-18f1a07afed3208ef4424305da8c6b1a34cf3aed.tar.gz
askbot-18f1a07afed3208ef4424305da8c6b1a34cf3aed.tar.bz2
askbot-18f1a07afed3208ef4424305da8c6b1a34cf3aed.zip
update INSTALL_
-rw-r--r--.gitignore2
-rw-r--r--INSTALL17
2 files changed, 18 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 05a341b0..975f2e73 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,5 @@
*.swp
nbproject
settings_local.py
+log
+*.log
diff --git a/INSTALL b/INSTALL
index 35683147..0c5e76dc 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,9 +1,16 @@
PRE-REQUIREMENTS:
-----------------------------------------------
-1. Python2.5, MySQL, Django v1.0+
+0. We recommend you to use python-setuptools to install pre-requirement libraries.
+If you haven't installed it, please try to install it first.
+e.g, sudo apt-get install python-setuptools
+
+1. Python2.5/2.6, MySQL, Django v1.0/1.1
+Make sure mysql for python provider has been installed.
+sudo easy_install mysql-python
2. Python-openid v2.2
http://openidenabled.com/python-openid/
+sudo easy_install python-openid
3. django-authopenid(Included in project already)
http://code.google.com/p/django-authopenid/
@@ -11,21 +18,29 @@ http://code.google.com/p/django-authopenid/
4. html5lib
http://code.google.com/p/html5lib/
Used for HTML sanitizer
+sudo easy_install html5lib
5. Markdown2
http://code.google.com/p/python-markdown2/
+sudo easy_install markdown2
6. Django Debug Toolbar
http://github.com/robhudson/django-debug-toolbar/tree/master
INSTALL STEPS:
-----------------------------------------------
+0. Make sure you have all above python libraries installed.
+
1. Copy settings_local.py.dist to settings_local.py and
update all your settings. Check settings.py and update
it as well if necessory.
2. Prepare your database by using the same database/account
configuration from above.
+e.g,
+create database cnprog DEFAULT CHARACTER SET UTF8 COLLATE utf8_general_ci;
+grant all on cnprog.* to 'cnprog'@'localhost';
+And then run "python manage.py syncdb" to synchronize your database.
3. Run "python manager.py runserver" to startup django
development environment.