Reputation: 25
I would like to know if there is a way to run bluemix locally on the computer by using the app that I created on bluemix(In the site), I would want to know if I can use that app directly or would I have to use the cloud foundry for this purpose!
Upvotes: 1
Views: 422
Reputation: 11492
Running a Bluemix app locally is definitely possible and can be a time-saver during development. There are three parts to running an app locally:
cf env
and create a .secrets
file. We then run . .secrets
in the terminal which launches the server.Upvotes: 0
Reputation: 25
Even though this question has been answered and marked as valid I can notice is somehow wrong.
All apps in bluemix can be downloaded and run it locally. Go to the left column in your app dashboard and click on "start coding". That section will give you instructions on how to run your app locally.
Bluemix Local is not meant to be run locally in your own machine. Please check the requirements and let me know if your machine has those specs
Upvotes: 1
Reputation: 17118
Many of the apps built for Bluemix can also be run or tested locally. Here is the link to a small app for Bluemix that checks whether it is local or on Bluemix. The key is that the app needs to be prepared for it.
If you want to run a Cloud Foundry app entirely "locally" on the computers in your data center or on your machine, and deploy to there in the same way you deploy the app to Bluemix, then you would need Cloud Foundry on that machine. IBM is offering "Bluemix Local" exactly for that purpose.
Upvotes: 2