Browse Source

bjoern WSGI server.

Stefano Cossu 7 years ago
parent
commit
5f6e2eb2d4
1 changed files with 7 additions and 0 deletions
  1. 7 0
      wsgi.py

+ 7 - 0
wsgi.py

@@ -0,0 +1,7 @@
+#!/usr/bin/env python
+
+import bjoern
+
+from server import fcrepo
+
+bjoern.run(fcrepo, 'localhost', 8000)