Files
attract/runserver.py

12 lines
258 B
Python
Raw Normal View History

2016-07-29 17:43:58 +02:00
#!/usr/bin/env python
2016-08-31 11:30:44 +02:00
from pillar import PillarServer
2016-09-07 10:04:31 +02:00
from attract import AttractExtension
2016-07-29 17:43:58 +02:00
app = PillarServer('.')
app.load_extension(AttractExtension(), '/attract')
app.process_extensions()
if __name__ == '__main__':
app.run('::0', 5000, debug=True)