Micropub client for creating Event posts
JavaScript CSS Python
Switch branches/tags
Nothing to show
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
slater
.gitignore Refactor app into blueprint and exts Jan 28, 2017
README.md Mark off some TODOs in README May 12, 2017
requirements.txt
run.py
slater.cfg.template
slater.wsgi

README.md

Slater

Slater is a micropub client for posting events to your website.

Quick (& Dirty) Start

Create and activate a virtualenv:

virtualenv --python=/usr/bin/python3 venv
source venv/bin/activate

or conda:

conda create -n slater python=3.5
source activate slater

Install required Python libraries

pip install -r requirements.txt

Run the dev server

python slater.py

View the app in your browser at http://localhost:5000.

TODOs

So many.

  • Autocomplete support for locations using ... what? how about a page full of h-cards with venue information? http://indieweb.org/venue
  • Automatic timezone selection?
  • Categories: split on commas and strip whitespace and put into category[] format
  • Support for syndication links from silos
  • CORS issues? Use a proxy?