add prelim support for pubsubhubbub enabled feeds

This commit is contained in:
Kyle Mahan 2015-02-21 22:59:26 -08:00
parent 8e3a671531
commit 6f2dc85110
5 changed files with 134 additions and 13 deletions

10
run.py Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env python
def main():
from woodwind.app import create_app
app = create_app()
app.run(debug=True, port=4000)
main()