/slater

Micropub client for creating Event posts

Primary LanguageJavaScript

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?