Skip to content

Commit 6fb5fbb

Browse files
committed
Changed out init url for https, added next steps after flashing ocre-runtime pages.
1 parent 594e965 commit 6fb5fbb

5 files changed

Lines changed: 28 additions & 12 deletions

File tree

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
source 'https://rubygems.org'
2-
32
gem "jekyll", "~> 4.3.4" # installed by `gem jekyll`
43
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
5-
64
gem "just-the-docs", "0.10.1" # pinned to the current release
75
# gem "just-the-docs" # always download the latest release
6+
gem "csv"
7+
gem "base64"
8+
gem "logger"

Gemfile.lock

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,19 @@ GEM
33
specs:
44
addressable (2.8.7)
55
public_suffix (>= 2.0.2, < 7.0)
6+
base64 (0.2.0)
67
bigdecimal (3.1.9)
78
colorator (1.1.0)
89
concurrent-ruby (1.3.4)
10+
csv (3.3.2)
911
em-websocket (0.5.3)
1012
eventmachine (>= 0.12.9)
1113
http_parser.rb (~> 0)
1214
eventmachine (1.2.7)
1315
ffi (1.17.1-arm64-darwin)
1416
ffi (1.17.1-x86_64-linux-gnu)
1517
forwardable-extended (2.6.0)
16-
google-protobuf (4.29.2-arm64-darwin)
17-
bigdecimal
18-
rake (>= 13)
19-
google-protobuf (4.29.2-x86_64-linux)
18+
google-protobuf (4.29.2)
2019
bigdecimal
2120
rake (>= 13)
2221
http_parser.rb (0.8.0)
@@ -59,6 +58,7 @@ GEM
5958
listen (3.9.0)
6059
rb-fsevent (~> 0.10, >= 0.10.3)
6160
rb-inotify (~> 0.9, >= 0.9.10)
61+
logger (1.6.4)
6262
mercenary (0.4.0)
6363
pathutil (0.16.2)
6464
forwardable-extended (~> 2.6)
@@ -84,8 +84,11 @@ PLATFORMS
8484
x86_64-linux-gnu
8585

8686
DEPENDENCIES
87+
base64
88+
csv
8789
jekyll (~> 4.3.4)
8890
just-the-docs (= 0.10.1)
91+
logger
8992

9093
BUNDLED WITH
9194
2.5.9

docs/quickstart/firmware/hardware.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pip install west
4747

4848
Now, initialize the `ocre-runtime` repo.
4949
```
50-
west init -m git@github.com:project-ocre/ocre-runtime.git
50+
west init -m https://github.com/project-ocre/ocre-runtime.git
5151
```
5252

5353
Lastly, update the repo with the `west` utility.
@@ -95,4 +95,10 @@ To flash the Ocre Runtime to your device follow these steps:
9595
## Troubleshooting
9696
This section covers common issues you might encounter when building and flashing the Ocre runtime to physical hardware, along with their solutions.
9797

98-
- **Unsupported Board**: If you're unable to flash to your board, and it's not listed in our [Board Support](../../../board-support), check out our [Adding Board Support](../../../board-support/adding-support) guide under the Board Support section. This guide will walk you through the process of adding support for your specific hardware.
98+
- **Unsupported Board**: If you're unable to flash to your board, and it's not listed in our [Board Support](../../../board-support), check out our [Adding Board Support](../../../board-support/adding-support) guide under the Board Support section. This guide will walk you through the process of adding support for your specific hardware.
99+
100+
---
101+
102+
## Next Steps
103+
104+
Now that you have successfully built and flashed the Ocre runtime to your device, you're ready to create your first Ocre application. Head over to [Your First Container](../../first-app) to get started building containerized applications.

docs/quickstart/firmware/simulated.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pip install west
5555

5656
Now, initialize the `ocre-runtime` repo.
5757
```
58-
west init -m git@github.com:project-ocre/ocre-runtime.git
58+
west init -m https://github.com/project-ocre/ocre-runtime.git
5959
```
6060

6161
Lastly, update the repo with the `west` utility.
@@ -94,4 +94,10 @@ To run the application, simply run the following command:
9494

9595
If successful, you should see the following output:
9696

97-
![](../success.png)
97+
![](../success.png)
98+
99+
---
100+
101+
## Next Steps
102+
103+
Now that you have successfully built and flashed the Ocre runtime to your device, you're ready to create your first Ocre application. Head over to [Your First Container](../../first-app) to get started building containerized applications.

docs/quickstart/first-app/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ has_children: true
77
has_toc: false
88
---
99

10-
# Your First App
10+
# Your First Container
1111

1212
This section guides you through creating your first containerized application with Ocre. You'll set up a development environment and build a simple application that demonstrates Ocre's core capabilities.
1313

1414
---
1515

1616
## Getting Started
1717

18-
Begin by following our [Setting Up Your Development Environment](./dev-environment) guide to install and configure the necessary tools. This guide offers two approaches:
18+
Begin by following our [Setting Up Your Development Environment](./dev-environment) guide to install and configure the necessary tools. This guide offers *two* approaches:
1919
- Using Visual Studio Code with Dev Containers for an integrated IDE experience
2020
- Using Docker interactively for a command-line workflow
2121

0 commit comments

Comments
 (0)