Added some guides

This commit is contained in:
Robert Jelic
2025-02-18 10:19:33 +01:00
parent 72fa3353d5
commit 58de443762
4 changed files with 284 additions and 0 deletions

45
docs/guides/download.md Normal file
View File

@@ -0,0 +1,45 @@
# Download
Basalt is available in two versions: the dev version, ideal for develpoement and the release version which is meant for production
## Downloading Basalt
To download the Basalt Installer-UI using a ComputerCraft shell command, use the following:
```
wget run https://raw.githubusercontent.com/Pyroxenium/Basalt2/main/install.lua
```
## Download Basalt without UI
If you want to skip the UI and just download the essentials, here are some other commands:
### Developer
This is the full dev version of Basalt, containing all available files.
```
wget run https://raw.githubusercontent.com/Pyroxenium/basalt-docs/main/install.lua dev
```
### Release
This is the default bundle version of Basalt, containing essential files for a UI framework.
```
wget run https://raw.githubusercontent.com/Pyroxenium/basalt-docs/main/install.lua release
```
## Update Basalt
The following command will update the project for you
To execute the update command, use the following:
```
wget run https://raw.githubusercontent.com/Pyroxenium/basalt-docs/main/install.lua update
```
::: info
This [config](https://github.com/Pyroxenium/Basalt2/config.json) file is used to check if a update needs to be done.
:::