2012-10-04 33 views
2

我有一個騾子應用程序,我想部署到Heroku。有沒有人將Hero 3應用程序部署到Heroku。任何指針都會有幫助。Heroku和Mule

回答

3

爲你的騾應用程序創建一個簡單的啓動主:

public class MuleBootstrap 
{ 
    public static void main(final String[] args) throws Exception 
    { 
     final MuleServer ms = new MuleServer("mule-config.xml"); 
     ms.start(true, true); 
    } 
} 

,並使用Maven構建和打包。

this Heroku tutorial中尋找靈感來實際部署打包的應用程序。