mirror of
https://github.com/gnmyt/myspeed.git
synced 2025-12-30 17:49:33 -06:00
Moved all scripts into the scripts folder
This commit is contained in:
@@ -16,17 +16,14 @@ Hier wird die Einrichtung für Linux beschrieben. MySpeed lässt sich über vers
|
||||
```
|
||||
|
||||
## Automatische Installation
|
||||
!!! tip "Tipp"
|
||||
Du möchtest MySpeed unter einem bestimmten Pfad installieren? Dann setze doch einfach den Parameter `-d /dein/installations/pfad` hinter den Befehl
|
||||
|
||||
=== "Stabile Version"
|
||||
```sh
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s --
|
||||
bash <(curl -sSL https://install.myspeed.dev)
|
||||
```
|
||||
|
||||
=== "Entwicklungsversion"
|
||||
```sh
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s -- --beta
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/install.sh | bash -s -- --beta
|
||||
```
|
||||
|
||||
## Automatischer Deinstallationsprozess
|
||||
@@ -37,12 +34,12 @@ Keine Lust mehr? Du kannst MySpeed ganz einfach wieder entfernen. Entscheide hie
|
||||
|
||||
=== "Daten behalten"
|
||||
```sh
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash -s -- --keep-data
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash -s -- --keep-data
|
||||
```
|
||||
|
||||
=== "Daten löschen"
|
||||
```sh
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash
|
||||
```
|
||||
|
||||
## Manuelle Installation
|
||||
|
||||
@@ -21,12 +21,12 @@ Here the setup for Linux is described. MySpeed can be installed in several ways.
|
||||
|
||||
=== "Stable Version"
|
||||
```sh
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s --
|
||||
bash <(curl -sSL https://install.myspeed.dev)
|
||||
```
|
||||
|
||||
=== "Development Version"
|
||||
```sh
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh | bash -s -- --beta
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/install.sh | bash -s -- --beta
|
||||
```
|
||||
|
||||
## Automatic uninstall process
|
||||
@@ -37,12 +37,12 @@ Don't want to use MySpeed anymore? You can easily remove MySpeed. Decide here if
|
||||
|
||||
=== "Keep data"
|
||||
```sh
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash -s -- --keep-data
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash -s -- --keep-data
|
||||
```
|
||||
|
||||
=== "Delete data"
|
||||
```sh
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/uninstall.sh | bash
|
||||
curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/uninstall.sh | bash
|
||||
```
|
||||
|
||||
## Manual installation
|
||||
|
||||
@@ -26,11 +26,11 @@ read -p "Enter your choice (1/2): " choice
|
||||
case $choice in
|
||||
1)
|
||||
echo -e "${BLUE}Running Docker installation script...${NORMAL}"
|
||||
bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/docker-install.sh)
|
||||
bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/docker-install.sh)
|
||||
;;
|
||||
2)
|
||||
echo -e "${BLUE}Running normal installation script...${NORMAL}"
|
||||
bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/install.sh)
|
||||
bash <(curl -sSL https://raw.githubusercontent.com/gnmyt/myspeed/development/scripts/install.sh)
|
||||
;;
|
||||
*)
|
||||
echo -e "${RED}Invalid choice. Exiting.${NORMAL}"
|
||||
Reference in New Issue
Block a user