-2

I am trying to download my app source developed on IBM Bluemix using bx cf download command, but I am simply getting a message saying Files downloaded: 0/

Here's the command I am giving enter image description here

Here's my app listed enter image description here

The command creates a folder named Bluemix in C:\Bluemix directory, but it's empty.

Info -

It is a Node JS based app using Watson Conversation API.

Can any one help me resolve the issue?

Techidiot
  • 1,921
  • 1
  • 15
  • 28

1 Answers1

0

The cf download hasn't been viable since the architecture moved to Diego. If it's just a couple of files, you can take advantage of bx cf ssh and use cat like:

bx cf ssh "myApp" -c "/bin/cat /home/vcap/app/mongostorage.js" > mongostorage.js

But to get them all, the easiest way to achieve this is to go to your Bluemix dashboard and in your app, bottom right, add continuous delivery. That will give you a Git repo you can git clone from and look at online. This is best if you intend on doing any edits.

It is also possible to get them all using ssh. See How to copy files from Liberty on Bluemix to Windows?

amadain
  • 2,724
  • 4
  • 37
  • 58