Files
blender-cloud/cloud.py

10 lines
170 B
Python
Raw Normal View History

#!/usr/bin/env python
2016-08-10 10:54:23 +02:00
from pillar import PillarServer
app = PillarServer('.')
app.process_extensions()
if __name__ == '__main__':
2016-08-10 10:54:23 +02:00
app.run('::0', 5001, debug=True)