mindsphere application

0
While pushing the an application to my tenant ,how can i solve this problem ? <cf push -p "MindSphere Tutorial Application_20191217_1717.mda"> “Getting app info... The app cannot be mapped to route viktorstutorial.apps.eu1.mindsphere.io because the route exists in a different space.”
asked
1 answers
1

Hi Ibrahim,
the problem is, that routes on CF must be unique across the entire system – and it seems that someone else is already using this route. This could be in a different org / space.

To solve this you can specify a route in your manifest.yml


routes:
  - route: newuniquename.apps.eu1.mindsphere.io

 

Use this route when you register your app in developer cockpit

 

answered