honmaple 9 лет назад
Родитель
Сommit
794e65b92a

+ 0 - 14
README.md

@@ -1,14 +0,0 @@
-### maple-bbs
-
-This is a forums system based on the flask
-
-### DEMO
-You can have a look [here](https://forums.honmaple.org)  
-The backstage management system isn't completed
-
-#### if you want to use
-
-You need register a account,and use `update users set is_superuser = true where id = 1`  
-Then you can add board use admin
-
-But now I have not completed this forums

+ 17 - 0
README.org

@@ -0,0 +1,17 @@
+* maple-bbs(maplebb)
+
+  This is a forums system based on the flask
+
+** Start version
+   You can have a look [[https://forums.honmaple.org][here]]  
+   The version isn't completed
+
+** Now version
+   [[https://raw.githubusercontent.com/honmaple/maple-bbs/master/screenshooter/index.png]]
+   [[https://raw.githubusercontent.com/honmaple/maple-bbs/master/screenshooter/ask.png]]
+   [[https://raw.githubusercontent.com/honmaple/maple-bbs/master/screenshooter/board.png]]
+** if you want to use
+
+   You need register a account,and use `update users set is_superuser = true where id = 1`  
+   Then you can add board use admin
+

+ 12 - 0
config.example/__init__.py

@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+# -*- coding=UTF-8 -*-
+# **************************************************************************
+# Copyright © 2016 jianglin
+# File Name: __init__.py
+# Author: jianglin
+# Email: xiyang0807@gmail.com
+# Created: 2016-05-20 12:35:20 (CST)
+# Last Update:星期五 2016-5-20 12:35:22 (CST)
+#          By:
+# Description:
+# **************************************************************************

+ 46 - 0
config.example/config.py

@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+# -*- coding=UTF-8 -*-
+# **************************************************************************
+# Copyright © 2016 jianglin
+# File Name: config.py
+# Author: jianglin
+# Email: xiyang0807@gmail.com
+# Created: 2016-05-20 12:31:46 (CST)
+# Last Update:星期二 2016-6-14 23:42:32 (CST)
+#          By: jianglin
+# Description:
+# **************************************************************************
+from datetime import timedelta
+
+DEBUG = True
+SECRET_KEY = ''
+SECURITY_PASSWORD_SALT = ''
+
+PERMANENT_SESSION_LIFETIME = timedelta(days=3)
+REMEMBER_COOKIE_DURATION = timedelta(days=3)
+
+PER_PAGE = 12
+
+# 定制缓存 = 60
+CACHE_DEFAULT_TIMEOUT = 60
+CACHE_KEY_PREFIX = 'cache:'
+CACHE_REDIS_HOST = '127.0.0.1'
+CACHE_REDIS_PORT = ''
+CACHE_REDIS_PASSWORD = ''
+CACHE_REDIS_DB = 1
+
+# REDIS_PASSWORD = 'redis'
+# REDIS_DB = 1
+
+ONLINE_LAST_MINUTES = 5
+
+MAIL_SERVER = ''
+MAIL_PORT =
+MAIL_USE_TLS =
+MAIL_USE_SSL =
+MAIL_USERNAME = ''
+MAIL_PASSWORD = ''
+MAIL_DEFAULT_SENDER = ''
+
+# SQLALCHEMY_TRACK_MODIFICATIONS = False
+SQLALCHEMY_DATABASE_URI = ''

+ 46 - 0
config.example/production.py

@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+# -*- coding=UTF-8 -*-
+# **************************************************************************
+# Copyright © 2016 jianglin
+# File Name: config.py
+# Author: jianglin
+# Email: xiyang0807@gmail.com
+# Created: 2016-05-20 12:31:46 (CST)
+# Last Update:星期二 2016-6-14 23:42:32 (CST)
+#          By: jianglin
+# Description:
+# **************************************************************************
+from datetime import timedelta
+
+DEBUG = True
+SECRET_KEY = ''
+SECURITY_PASSWORD_SALT = ''
+
+PERMANENT_SESSION_LIFETIME = timedelta(days=3)
+REMEMBER_COOKIE_DURATION = timedelta(days=3)
+
+PER_PAGE = 12
+
+# 定制缓存 = 60
+CACHE_DEFAULT_TIMEOUT = 60
+CACHE_KEY_PREFIX = 'cache:'
+CACHE_REDIS_HOST = '127.0.0.1'
+CACHE_REDIS_PORT = ''
+CACHE_REDIS_PASSWORD = ''
+CACHE_REDIS_DB = 1
+
+# REDIS_PASSWORD = 'redis'
+# REDIS_DB = 1
+
+ONLINE_LAST_MINUTES = 5
+
+MAIL_SERVER = ''
+MAIL_PORT =
+MAIL_USE_TLS =
+MAIL_USE_SSL =
+MAIL_USERNAME = ''
+MAIL_PASSWORD = ''
+MAIL_DEFAULT_SENDER = ''
+
+# SQLALCHEMY_TRACK_MODIFICATIONS = False
+SQLALCHEMY_DATABASE_URI = ''

BIN
screenshooter/ask.png


BIN
screenshooter/board.png


BIN
screenshooter/index.png