问题
- I have created a cloud foundry app to deploy node js application in bluemix.
- I have used the commands which they given in Getting Started, to deploy my node js application from local to bluemix. Application is deployed successfully and app starts running.
- Now I have to download the code (the entire project folder) I have deployed, how can I do this?
回答1:
It isn't recommended to write files to the filesystem in a Cloud Foundry app on Bluemix, it's purely a runtime. If you need to store files, try using the Object Storage offering on Bluemix https://console.bluemix.net/catalog/services/Object-Storage which will keep your files safe and allow you to access them, back them up, or whatever you need.
来源:https://stackoverflow.com/questions/45936117/how-to-download-node-application-source-code-deployed-as-a-cloud-foundry-app-i