file rename and table formatting

This commit is contained in:
2025-01-28 10:51:00 +01:00
parent 57559e7275
commit 6dec5cde70
2 changed files with 17 additions and 12 deletions

View File

@@ -3,7 +3,12 @@
## Introduction
I wanted to combine 2 random objects that interest me into one project. A drone and a jumbotron. So im gonna make a drone with multiple screens on it that could for example be used for traffic control or entertainment purposes.
## Requirements
## Drone Requirements
### basic requirements
* 2 screens
* Speakers
* 20 min flight time

View File

@@ -59,17 +59,17 @@ pages:
What does everything do?
| Variables | Description |
|--------------- |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| image | Defines what OS should be used to for the scripts |
| before_script | Commands to run before you run the script or build something |
| pages | When this variable is mentioned gitlab knows it a pages job |
| stage | Defines what stage the build process is in. This can be used to run jobs in parallel. for example: all early stage jobs at the same time and all main stage jobs at the same time. |
| artifacts | Jobs can leave files. This tells them to save them |
| path | This tells which files or folders to store as the artifacts |
| rules | This tells when to run the pipline |
| if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH | If the branch commited to is set to the default branch in gitlab. Then run the pipline |
| changes | tell the pipline to only update when certain files or folders are changed |
| Variables | Description |
| ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| image | Defines what OS should be used to for the scripts |
| before_script | Commands to run before you run the script or build something |
| pages | When this variable is mentioned gitlab knows it a pages job |
| stage | Defines what stage the build process is in. This can be used to run jobs in parallel. for example: all early stage jobs at the same time and all main stage jobs at the same time. |
| artifacts | Jobs can leave files. This tells them to save them |
| path | This tells which files or folders to store as the artifacts |
| rules | This tells when to run the pipline |
| if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH | If the branch commited to is set to the default branch in gitlab. Then run the pipline |
| changes | tell the pipline to only update when certain files or folders are changed |
## Sources
* https://gitlab.com/pages/mkdocs