ScribeEngine is an open source blog engine written in Python
scribeengine | ||
.bzrignore | ||
config.ini.default | ||
devserver.py | ||
README.rst | ||
requirements.txt | ||
setup.py | ||
tests |
ScribeEngine
ScribeEngine is an open source blog engine written in Python and Flask.
Installation and Setup
Install ScribeEngine using pip
:
pip install ScribeEngine
Create a config file with these options set:
[mail]
server = mail.example.com
port = 25
use_tls = false
username = me
password = secret
[sqlalchemy]
database_uri = sqlite:///scribeengine.sqlite
Run a local server:
$ python -m scribeengine.application.run()