29 lines
495 B
ReStructuredText
29 lines
495 B
ReStructuredText
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()
|
|
|