Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update screenshots of demo container #779

Merged
merged 3 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/content/getting-started/demo-screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/content/getting-started/demo-with-redis-screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 10 additions & 8 deletions docs/content/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,13 @@ This command:
- Creates a port-forward from localhost to port 3000 inside the container so you can navigate to the app's frontend UI
- Streams container logs to your terminal

<img src="./demo-screenshot.png" alt="Screenshot of the demo container" width=400>
In your browser you should see the demo app:

<img src="./demo-screenshot.png" alt="Screenshot of the demo container" width=600px >
<br /><br />
Congrats! You're running your first Radius app.

When you're ready to move on to the next step, use `CTRL+C` to exit the command.
Congrats! You're running your first Radius app. When you're ready to move on to the next step, use <kbd>CTRL</kbd>+ <kbd>C</kbd> to exit the command.


## 5. Add Database

Expand Down Expand Up @@ -150,17 +152,17 @@ Use the command below to run the updated application again, then open the browse
rad run app.bicep
```

You should see that the environment variables have changed. The `demo` container now has connection information for Redis (`CONNECTION_REDIS_HOST`, `CONNECTION_REDIS_PORT`).
You should see the Radius Connections section with new environment variables added. The `demo` container now has connection information for Redis (`CONNECTION_REDIS_HOST`, `CONNECTION_REDIS_PORT`, etc.):

<img src="./demo-with-redis-screenshot.png" alt="Screenshot of the demo container" width=500>
<img src="./demo-with-redis-screenshot.png" alt="Screenshot of the demo container" width=800px >
<br /><br />

Navigate to the TODO List tab and test out the application. Using the TODO page will update the saved state in Redis.
Navigate to the Todo List tab and test out the application. Using the Todo page will update the saved state in Redis:

<img src="./demo-with-todolist.png" alt="Screenshot of the todolist" width=500>
<img src="./demo-with-todolist.png" alt="Screenshot of the todolist" width=700px >
<br /><br />

Press CTRL+C when you are finished with the website.
Press <kbd>CTRL</kbd>+ <kbd>C</kbd> when you are finished with the website.

## Recap and next steps

Expand Down
Loading