This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
old-scribeengine/README.rst

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()