Commit 5988f9bea49168f0c156859bf58d3f3bfacfe7bc

Authored by zhenchaozhu
1 parent bd3fab00d1
Exists in master and in 1 other branch de

remove breakpoint

1 1 ### Django forum
2 2  
3   -***
4   -
5   -demo: <http://djangoforum.coding.io/>
6   -
7   -Django forum是使用Django实现的轻型现代论坛程序,是fork自[F2E.im](https://github.com/PaulGuo/F2E.im)的Django版本.
8   -相对于原版的主要区别在于使用Django admin实现了一个简单的后台管理.
9   -
10   -Django forum有3个分支,master分支用于主机上部署,SAE分支是适配Sina App Engine的版本,api分支是一个试验性质的分支,详情见更新
11   -
12 3 #### 安装部署
13 4  
14 5 主机版:
... ... @@ -70,11 +61,10 @@ DEFAULT_FROM_EMAIL = &#39;*********@qq.com&#39;
70 61 ```
71 62  
72 63 运行服务
73   -
74 64 ```shell
75 65 python manage.py runserver
76 66 ```
77 67  
78 68 默认超级用户`admin@admin.com`,密码`123456`,后台`/manage/admin/`
79 69  
80   -生产环境下推荐使用gunicorn.
81 70 \ No newline at end of file
  71 +生产环境下推荐使用gunicorn.
... ...
forum/forms/user.py
... ... @@ -88,7 +88,6 @@ class LoginForm(forms.Form):
88 88 super(LoginForm, self).__init__(*args, **kwargs)
89 89  
90 90 def clean(self):
91   - import pdb; pdb.set_trace()
92 91 username = self.cleaned_data.get('username')
93 92 password = self.cleaned_data.get('password')
94 93  
... ...
1   -Django==1.5.2
  1 +Django==1.8.2
2 2 Markdown==2.5.2
3 3 MySQL-python==1.2.3
  4 +Pillow==2.7.0
  5 +Pygments==2.0.1
... ...