<div dir="ltr"><div>Hi! I have created a chef cookbook to deploy various web applications
with plackup/psgi and Dancer is among them.<br></div>Anyone who deal with Dancer deployment can use it as follow:<br><div><pre><code>psgi_application 'my application' do
application_user 'user'
application_home '/home/user/app/MyApplication'
script '/home/user/app/MyApplication/scripts/my-dancer-app.psgi'
operator 'Dancer'
action 'install'
end<br><br></code></pre><pre><code>This code will install dancer psgi application init script ready to use. Supported platforms are debian and ubuntu:<br><br></code></pre><pre><code>/etc/init.d</code><code>/my-dancer-app start<br>
</code><code>/etc/init.d</code><code>/my-dancer-app stop<br></code><code>/etc/init.d</code><code>/my-dancer-app restart<br><br></code></pre><pre><code>See more usage details on <a href="http://community.opscode.com/cookbooks/psgi">http://community.opscode.com/cookbooks/psgi</a><br>
</code></pre><pre><code><br></code></pre><br></div></div>