https://github.com/redhatquickcourses/rh-speed-training
https://github.com/redhatquickcourses/rh-speed-training
ansible containers git opentraining
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/redhatquickcourses/rh-speed-training
- Owner: RedHatQuickCourses
- Created: 2024-08-13T12:10:14.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-16T17:44:06.000Z (about 1 year ago)
- Last Synced: 2025-04-16T21:16:21.279Z (about 1 year ago)
- Topics: ansible, containers, git, opentraining
- Language: CSS
- Homepage: https://redhatquickcourses.github.io/rh-speed-training/
- Size: 2.41 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Getting started with a new training content repository
- Open the [course-starter-template](https://github.com/RedHatQuickCourses/course-starter-template)
- Click on `Use This template` button and select `Create a new repository` option.
- On `Create a new repository` page, Select the options as highlighted in the below image and then click `Create repository` button at the bottom of the page.

- Clone this repository on your local system:
```
git clone git@github.com:RedHatQuickCourses/my-training-repository.git
```
NOTE: Use your repository url in the above command.
- Go in to the course repository directory and initialize the course.
```
cd my-training-repository/
sh course-init.sh
```
Sample output:
```
Initializing my-training-repository . . . done
Please replace the specified strings in the files below and commit the changes before proceeding with the course development.
antora.yml:title: REPLACE Course Title
```
- Edit the files prompted by course initialization script.
- Commit the changes done by course initialization script and your manual edits.
```
git status
git add -A; git commit -m "course initialization"
git push origin main
```
- Browse your git repository url
- On your github repo page, on left hand side pane, click on settings gear icon near `About` heading.
- Click `Use your GitHub Pages website` option to select (checked) it and then click `Save changes` button.

- You should now see the link to access the rendered content within that same block.

FIXME: highlight the relevant area on images.
**SEE ALSO**
- [Development using devspace](./DEVSPACE.md)
- [Guideline for editing your content](./USAGE.md)