Skip to main content

Development Workflow

DevStack enables you to leverage advantages of remote developing with as little change to your workflow as possible. This means that you can continue using your favourite tools (e.g. IDEs, log management software) that you are used to.

Of course there are some differences in how certain elements of the development workflow happen. Below, you'll find a guide on how you can develop remotely.

Creating and Deploying an RDE

To develop remotely, you'll need to have a Remote Development Environment (RDE) first.

Create

You can create one or many RDEs. Each of them is an instance of a specified build. E.g. you can create an RDE for each branch that you use for development so they are ready and built for whenever you need them.

RDE creation can be done in the self service portal, completely autonomously.

Configure

When you create an RDE, you can define its properties with predefined templates. After loading a template, you can modify the configuration if needed. Note that some properties might not be customisable, depending on your setup of DevStack. Get in touch with your DevStack administrator if you need more templates or extra customisation options.

Deploy

Once you're done with the configuration, simply click on "deploy" in the self service portal. After a short time, the RDE shows up in the list of RDEs and is automatically started.

important

The license is based on RDE runtime hours, meaning that an RDE only consumes the license allowance once it's running. You can have multiple deployed RDEs that are ready to be started, without consuming any of your allowance.

Starting an RDE

Once you have an RDE, you can start it and connect to it. Depending on the method of source code synchronisation, you might need an additional initial setup when you first start an RDE.

Start

RDEs that are ready to be started are listed in the self service portal. Simply click on "start" to do so. After a short time the status of the RDE gets updated and you're ready to connect to it.

Initial Setup at First Start

important

If this is the first time that you start an RDE that is synchronised via file and folder synchronisation, read this section. If this is not the first time or the RDE is synchronised via file and folder mounting or via pure SSH, you can skip this section.

Here's how the initial setup works:

  1. Locate the RDE in the self service portal,
  2. expand the section that describes the initial setup,
  3. execute the commands in the instructions.

That's it! Now the local folder is set up and synced to the RDE. You're ready to start developing.

Developing with an RDE

Once your RDE is up and running, you can develop from your local machine.

Work on the Source Code

You can work on the source code locally. If your DevStack instance is set up to use pure SSH source code synchronisation, this can only be done in an SSH capable IDE.

Work with Logs

DevStack let's you access and work with logs in different ways. Read more about it here.

Branch switching

Switching between branches can be done differently with an RDE than in a local development workflow. You can create an RDE for every branch that you need. They can wait in the background until you need them and once you want to work on a branch, simply start and switch to the corresponding RDE. Since the RDE is already built, this reduces the time needed to work on another branch.

Version Control

Using git or another version control system works in the same way as with a local development workflow. You can commit, revert, etc. as usual.

From the user perspective this looks the same for all methods of source code synchronisation. Here's how it's done under the hood for the different methods:

  • for File and Folder Synchronisation:

    This methods keeps version control in the local repository.

    The source code repository is cloned at the first deploy to a repository on the RDE. Then the same repository is initialised locally. Local changes are synchronised to the RDE, however, git commands are only executed in the local repository (e.g. commit in the local repository, push to origin). This works, because even though the RDE lags behind in commit history, it's contents are kept synchronised with the local repository.

  • for File and Folder Mounting and Pure SSH:

    This methods keeps version control on the RDE.

    The source code repository is cloned at the first deploy to a repository on the RDE. Changes are made and git commands are executed directly on the RDE, through locally mounted folders or through an SSH capable IDE (e.g. commit in the repository on the RDE, push to origin).

Stopping an RDE

If you're done working with an RDE you can stop it in the self service portal. A stopped RDE does not use your licence allowance. Stopping an RDE does not delete it and you can simply start it again to pick up work where you left it.

note

RDEs can be configured to automatically stop after an idle time or outside of business hours.

Deleting an RDE

If you don't need an RDE and won't need it in the future, it is best practice to delete it in the self service portal. Deploying fresh RDEs is fast and ensures, that your RDE is created with up-to-date templates.

Before you delete an RDE, make sure to commit and push your work. Also save any other data that you want to keep (important logs, test results etc.)

danger

Deleting an RDE deletes all data on it as well.

Learn More

Self Service Portal
Connection to the RDE