Mendix app push to Mindsphere

0
Is there  anything problem  in file structure ?or the MindsphereSSO config information error?  shows not have the start command; the error massge  and the config  as shown blow ; 
asked
2 answers
0
  1. Overall, there is a step by step guide provided by Siemens you can refer to: https://developer.mindsphere.io/howto/howto-app-mendix.html
  2. the first line in your manifest.yml should be removed
  3. Be careful when configure the MindSphere URL for Alibaba cloud, I believe the link for China should be cn1.mindsphere-in.cn
answered
0

Maybe you have to specify the buildpack you want to use with your Mendix app. The cf push command shows that the “python_buildpack_offline” is used. But for mendix apps you should use the “mendix-buildpack”.
 

You can specify the buildpack in your manifest.yml
 

buildpacks:
      - mendix_buildpack
answered