2016-07-29 16:29:51 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2016-08-10 10:54:23 +02:00
|
|
|
from pillar import PillarServer
|
2017-03-03 14:40:01 +01:00
|
|
|
# from attract import AttractExtension
|
|
|
|
# from flamenco import FlamencoExtension
|
2016-08-31 11:42:43 +02:00
|
|
|
|
2017-03-03 14:40:01 +01:00
|
|
|
# attract = AttractExtension()
|
|
|
|
# flamenco = FlamencoExtension()
|
2016-07-29 16:29:51 +02:00
|
|
|
|
|
|
|
app = PillarServer('.')
|
2017-03-03 14:40:01 +01:00
|
|
|
# app.load_extension(attract, '/attract')
|
|
|
|
# app.load_extension(flamenco, '/flamenco')
|
2016-07-29 16:29:51 +02:00
|
|
|
app.process_extensions()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2016-08-10 10:54:23 +02:00
|
|
|
app.run('::0', 5001, debug=True)
|