소스 검색

bjoern WSGI server.

Stefano Cossu 7 년 전
부모
커밋
5f6e2eb2d4
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  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)