I just learned this Cloud Foundry way to access the app (each app is a User in the Linux VM) in details.
1. After installed **cf cli**, then one way is to use: **cf ssh <appname>** with your usual username and pw.
(cf is the Cloud Foundry CLI that you can download and install)
after you login, it is like a Linux VM with your app as user name:
2. **An example** is shown below (cf ssh is like login to a linux machine):
L:\IBM Cloud\PythonFlaskLab>cf ssh CommunityPythonFlaskTrialLR
vcap@xxxxxxxxxxxxxxxxxx:~$ dir
app deps logs staging_info.yml tmp
vcap@xxxxxxxxxxxxxxxxxx:~$ cd app
vcap@xxxxxxxxxxxxxxxxxx:~/app$ dir
LICENSE manifest.yml NOTICE Procfile README.md requirements.txt static welcome.py
You can use Linux scp to send to whatever PC or server with a FQDN name.
3. You can use: cf apps to view all your apps
L:\IBM Cloud\PythonFlaskLab>cf apps
OK
name requested state instances memory disk urls
This would be a more manual process (compared with the plug in which yet to try out) but it let you know what is going on under the hood or edit your app directly on the cloud vm or for trouble shooting and move around.