Added unit test
This commit is contained in:
11
runserver.py
Executable file
11
runserver.py
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from pillar_server import PillarServer
|
||||
from attract_server import AttractExtension
|
||||
|
||||
app = PillarServer('.')
|
||||
app.load_extension(AttractExtension(), '/attract')
|
||||
app.process_extensions()
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run('::0', 5000, debug=True)
|
Reference in New Issue
Block a user