Browse Source

bjoern WSGI server.

Stefano Cossu 7 năm trước cách đây
mục cha
commit
5f6e2eb2d4
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  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)