An open API service indexing awesome lists of open source software.

https://github.com/timoknapp/az-dev-box

Demo environment for Microsoft Dev Box
https://github.com/timoknapp/az-dev-box

azure dev-box

Last synced: 10 months ago
JSON representation

Demo environment for Microsoft Dev Box

Awesome Lists containing this project

README

          

# Microsoft Dev Box

## Prepare Dev Box Environment

[Setup Dev Box with ARM template](https://learn.microsoft.com/en-us/azure/dev-box/quickstart-configure-dev-box-arm-template#code-try-1)

## Connect to a Dev Box

### Developer Portal

[Create a dev box by using the developer portal](https://learn.microsoft.com/en-us/azure/dev-box/quickstart-create-dev-box)
To connect to a Dev Box, you need to go to [Microsoft Developer Portal](https://https://devportal.microsoft.com/).

### Hello World from Dev Box

```bash
cd java-hello-world
# Compile program
javac HelloDevBox.java
# Excute the program
java HelloDevBox
```