Create Barbican python scripts for development.
This script does not require uwsgi and instead uses paste deploy to run Barbican. Change-Id: I4a0148ad081fb8e238528af4eb54da8f0dfb037f
This commit is contained in:
parent
80421b7ddc
commit
fe365db0d6
17
bin/barbican-api
Executable file
17
bin/barbican-api
Executable file
@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from paste import deploy
|
||||
from paste import httpserver
|
||||
|
||||
def run():
|
||||
prop_dir = 'etc/barbican'
|
||||
|
||||
application = deploy.loadapp(
|
||||
'config:{prop_dir}/barbican-api-paste.ini'.format(prop_dir=prop_dir),
|
||||
name='main',
|
||||
relative_to='.')
|
||||
|
||||
httpserver.serve(application, host='127.0.0.1', port='9311')
|
||||
|
||||
if __name__ == '__main__':
|
||||
run()
|
Loading…
x
Reference in New Issue
Block a user