<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 &#39;my application&#39; do
      application_user    &#39;user&#39;
      application_home    &#39;/home/user/app/MyApplication&#39;
      script              &#39;/home/user/app/MyApplication/scripts/my-dancer-app.psgi&#39;
      operator            &#39;Dancer&#39;
      action              &#39;install&#39;      
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>