Initial checkin of Blender Cloud Server.

This commit is contained in:
2016-07-29 16:29:51 +02:00
commit 6ab2709cc4
5 changed files with 58 additions and 0 deletions

9
cloud.py Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python
from pillar_server import PillarServer
app = PillarServer('.')
app.process_extensions()
if __name__ == '__main__':
app.run('::0', 5000, debug=True)