authorgravatar for shomodj@users.noreply.github.comBoris Somodvarac <shomodj@users.noreply.github.com> 2024-10-29 21:10:37 +01:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2024-10-29 13:10:37 -07:00
log77914d78c8bf6f37ce868d81be1d4d73d91fcfe1
tree83248ed303bb90e42550beb128cc6a1f6654a17a
parenta0f605723661baecc98a2828e95695d02ecd720c
signaturebadge-check Signed by PGP key B5690EEEBB952194

[skip-ci] Update tutorial.md (#72)

fixed typos

1 files changed, 3 insertions(+), 3 deletions(-)

docs/tutorial.md+3-3
...@@ -123,7 +123,7 @@ The core of expandability, it is possible to add dependencies to your project. H...@@ -123,7 +123,7 @@ The core of expandability, it is possible to add dependencies to your project. H
123 - One place packages can be sourced from is https://aquila.red/. In order to add them to your project, you will obtain its ID in the form `1/truemedian/hzzp` and then run `zigmod aq add <package>`.123 - One place packages can be sourced from is https://aquila.red/. In order to add them to your project, you will obtain its ID in the form `1/truemedian/hzzp` and then run `zigmod aq add <package>`.
124124
125- ZPM125- ZPM
126 - https://zig.pm/ is another supported pacakge index. You may add packages from ZPM with `zigmod zpm add <pacakge>`.126 - https://zig.pm/ is another supported package index. You may add packages from ZPM with `zigmod zpm add <package>`.
127127
128- Other/Git128- Other/Git
129 - Zigmod supports adding any Git repository as a dependency. This is done by manually editing your `zigmod.yml` and adding a line under either the `dependencies` or `dev_dependencies` keys. For example, adding a line with this contents would add `apple_pie` to your project: ` - src: git https://github.com/Luukdegram/apple_pie`. The URL field may be any valid Git url that you would pass to `git clone`.129 - Zigmod supports adding any Git repository as a dependency. This is done by manually editing your `zigmod.yml` and adding a line under either the `dependencies` or `dev_dependencies` keys. For example, adding a line with this contents would add `apple_pie` to your project: ` - src: git https://github.com/Luukdegram/apple_pie`. The URL field may be any valid Git url that you would pass to `git clone`.
...@@ -184,9 +184,9 @@ https://github.com/nektro/aquila is a package index software and CI system desig...@@ -184,9 +184,9 @@ https://github.com/nektro/aquila is a package index software and CI system desig
184184
185> Note: I, @nektro, host a public instance at https://aquila.red/ available for anyone to use. However Aquila can be self hosted and the only difference in the following instructions will be the domain name.185> Note: I, @nektro, host a public instance at https://aquila.red/ available for anyone to use. However Aquila can be self hosted and the only difference in the following instructions will be the domain name.
186186
187Navigating to https://aquila.red/ will show you the homepage with recent pacakges and most starred ones.187Navigating to https://aquila.red/ will show you the homepage with recent packages and most starred ones.
188188
189Clicking the "Login" button will bring you to https://aquila.red/dashboard which will show you a list of your currently imported pacakges. The login screen will prompt you to authorize with an identity provider and ask you for webhook permissions. This is so that aquila can listen for new updates and automatically test them for the CI.189Clicking the "Login" button will bring you to https://aquila.red/dashboard which will show you a list of your currently imported packages. The login screen will prompt you to authorize with an identity provider and ask you for webhook permissions. This is so that aquila can listen for new updates and automatically test them for the CI.
190190
191The main nav will contain a link to https://aquila.red/import. Listed will be all of your not-imported Zig projects. Clicking "Select" will not immediately navigate the page in most browsers as the server will attempt to clone and verify your repository. Please be patient while it loads.191The main nav will contain a link to https://aquila.red/import. Listed will be all of your not-imported Zig projects. Clicking "Select" will not immediately navigate the page in most browsers as the server will attempt to clone and verify your repository. Please be patient while it loads.
192192