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
- Host: GitHub
- URL: https://github.com/timoknapp/az-dev-box
- Owner: timoknapp
- Created: 2023-10-09T12:48:57.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-09T20:00:50.000Z (over 2 years ago)
- Last Synced: 2025-02-13T05:17:12.381Z (12 months ago)
- Topics: azure, dev-box
- Language: Java
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```