Files
blender-cloud/cloud.py
Sybren A. Stüvel 6dd509851f Removed loading of Attract server from the master branch.
Development of Cloud with Attract enabled has been moved to the
'with-attract' branch, so that we can deploy onto production without
Attract enabled.
Once we decide it's time to deploy together with Attract, we can merge
the 'with-attract' branch back to master.
2016-08-31 11:40:42 +02:00

10 lines
170 B
Python
Executable File

#!/usr/bin/env python
from pillar import PillarServer
app = PillarServer('.')
app.process_extensions()
if __name__ == '__main__':
app.run('::0', 5001, debug=True)