How-To: Run applications on Radius

Learn how to run applications on Radius

Pre-requisites

Step 1: Run an application


You can run an application using the rad run command.

 rad run app.bicep

This will deploy the application to your environment, create port-forwards for all container ports, and stream container logs to the console.


Parameters can be included as part of rad run via the -p/--parameters flag:

 rad run app.bicep -p param1=value1 -p param2=value2

This will deploy the application to the created Radius Environment injecting the parameters into the application.

You can find more examples of deploying applications with parameters here.

Follow the how-to guide for guidance on troubleshooting your apps.