Skip to content

BJClarke/ibm-developer-extension-vscode

 
 

Repository files navigation

Build Status License Version Installs Ratings

IBM Developer Extension for VS Code

This extension provides capabilities for the IBM developer cli from directly within the VS Code editor. Use the VS Code command palette to quickly access all bx dev commands, without the need to leave the editor's context.

Changelog

  • v0.0.12
    • Added support for bx dev shell command
    • Removed support for the sdkgen cli
    • Improved cli version detection with minimum versioning and forced upgrade paths to support new cli features
    • Added support for "caller" arguments for the dev cli
  • v0.0.11
    • Added support for Kubernetes/Helm deployment
    • Added support for bx dev console
  • v0.0.10
    • Updated badges in README for VS Code marketplace compliance.
    • Fixed "killed terminal" bug in login/logout commands
  • v0.0.9 - Updated usage/getting started in README
  • v0.0.8 - first public release

Usage

Easily invoke commands from the IBM Bluemix Developer CLI from directly inside of the VS Code editor:

  • Open the VS Code command pallette (F1 or CMD-Shift-P)
  • Use the bx login command to log in to Bluemix (using your Bluemix credentials)

Using bx dev workflow:

Video demonstrating bx dev workflow: IBM Developer Extension for VS Code

Steps to get started:

  • Create a project using one of the two methods below:
  • Open the project’s folder locally in the VS Code editor
  • Use the bx dev build command to build the app into a Docker image
  • Use the bx dev debug command to run the app in local Docker for development
  • Use the bx dev run command to run the app in local Docker in release mode
  • Use the bx dev deploy command to deploy the app (in the Docker container) to Bluemix
  • Use the bx dev console command to open your project on Bluemix in a web browser

Using CloudFoundry workflow:

Video demonstrating CloudFoundry workflow: IBM Developer Extension for VS Code for CloudFoundry

Steps to get started:

  • Create a new CloudFoundry application
    • Use the web console and download the starter code
    • Create a new CloudFoundry app manually
  • Open the project’s folder locally in the VS Code editor
  • Use bx cf apps to list all of your apps
  • Use bx cf push to push a build of your app
  • Use bx cf <start/stop/restage/restart> to change the status of your app
  • Use bx cf logs to view the live log stream for your app
    • Use bx cf logs to stop the log stream

Supported CLI/plugins:

  • bx login/logout - Bluemix user authentication
  • bx dev - Bluemix developer CLI
  • bx cf - Bluemix CloudFoundry CLI
  • bx cs - Bluemix Container Service CLI
  • bx sdk - Bluemix SDK Generation CLI

Requirements/Dependencies

  • Bluemix CLI
  • Bluemix dev cli plugin
    After installing the Bluemix CLI, open up a terminal and run bx plugin install dev -r Bluemix
  • Docker - required by bx dev containers

Debugging Node.js apps within the local Docker container

First, make sure your app is running inside of a local container using bx dev debug. Note: debug action requires prior bx dev build --debug action)

Next, You have to create a launch configuration inside of .vscode/launch.json. If you don't already have a launch.json file, go to the Debug -> Add Configuration menu and paste the following into the configurations array. The default debug port is 5858 and the default remoteRoot is /app/:

{
    "type": "node",
    "request": "attach",
    "name": "Attach to Local Container",
    "address": "localhost",
    "port": 5858,
    "localRoot": "${workspaceRoot}/",
    "remoteRoot": "/app/"
}

Contributing

All improvements to the Bluemix Dev Extension for VS Code are very welcome! Here's how to get started ...

Fork this repository. $ git clone https://github.com/IBM-Bluemix/ibm-developer-extension-vscode.git

Start making your changes, then send us a pull request.

You can find more info on contributing in our contributing guidelines.

You can find more info about the development environment and configuration in our development guidelines

⚠️ Bugs / Issues / Defects

Find a bug? Let us know here

For additional support, find us on Slack or Stack Overflow using the links below.

Slack Connect on Slack

Sign up for our slack team and join the #bluemix-dev-services channel to ask questions and chat with fellow users.

Stack Overflow Check Stack Overflow

Search for the bluemix-dev-services tag on Stack Overflow for answers to common questions.

About

Extension for VS Code editor to enable IBM Bluemix `bx dev` CLI capabilities from within the editing environment.

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • TypeScript 99.3%
  • JavaScript 0.7%