mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-07 14:02:32 -04:00
refactor(docs): move source for doc pages here (#119)
* docs: move dev docs to dev-docs folder * docs: move source for doc pages here * docs: improve docs
This commit is contained in:
parent
5341587dfa
commit
bfc82c0534
46 changed files with 6307 additions and 0 deletions
3
docs/pages/getting_started/_meta.json
Normal file
3
docs/pages/getting_started/_meta.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"install_instructions": "Installation Instructions"
|
||||
}
|
59
docs/pages/getting_started/install_instructions.mdx
Normal file
59
docs/pages/getting_started/install_instructions.mdx
Normal file
|
@ -0,0 +1,59 @@
|
|||
# Installation Instructions
|
||||
|
||||
Precompiled binaries of the _GUI_ are available for download for:
|
||||
|
||||
- [Windows (64Bit)](#windows)
|
||||
- [Mac OS (Silicon)](#mac-os-silicon)
|
||||
- [Mac OS (Intel)](#mac-os-intel)
|
||||
- [Linux (Debian/Ubuntu, amd64/x86_64)](#linux-debian)
|
||||
- [Linux (Arch, x86_64)](#linux-pacman)
|
||||
- [Linux (AppImage, x86_64)](#linux-appimage)
|
||||
|
||||
## Windows (64Bit) [#windows]
|
||||
|
||||
1. Download the latest release from GitHub [here](https://github.com/UnstoppableSwap/unstoppableswap-gui/releases/download/v0.6.0/UnstoppableSwap-Setup-0.6.0.exe)
|
||||
2. Open the downloaded `.exe` installer
|
||||
3. Follow the installation instructions
|
||||
4. Open the `UnstoppableSwap` application from your Start menu
|
||||
|
||||
## Mac OS (Silicon / ARM / M1 / M2 / M3) [#mac-os-silicon]
|
||||
|
||||
1. Download the latest release from GitHub [here](https://github.com/UnstoppableSwap/unstoppableswap-gui/releases/download/v0.6.0/UnstoppableSwap-0.6.0-arm64.dmg)
|
||||
2. Open the downloaded `.dmg` file
|
||||
3. Drag the `UnstoppableSwap` icon to your Applications folder
|
||||
4. Open the `UnstoppableSwap` application from your Applications folder
|
||||
|
||||
## Mac OS (Intel) [#mac-os-intel]
|
||||
|
||||
1. Download the latest release from GitHub [here](https://github.com/UnstoppableSwap/unstoppableswap-gui/releases/download/v0.6.0/UnstoppableSwap-0.6.0.dmg)
|
||||
2. Open the downloaded `.dmg` file
|
||||
3. Drag the `UnstoppableSwap` icon to your Applications folder
|
||||
4. Open the `UnstoppableSwap` application from your Applications folder
|
||||
|
||||
## Linux (Debian/Ubuntu, amd64/x86_64) [#linux-debian]
|
||||
|
||||
For Debian-based distributions, you can download the Debian package and install it using `dpkg`.
|
||||
|
||||
```bash filename="install.sh"
|
||||
wget https://github.com/UnstoppableSwap/unstoppableswap-gui/releases/download/v0.6.0/unstoppableswap-gui_0.6.0_amd64.deb
|
||||
sudo dpkg -i unstoppableswap-gui_0.6.0_amd64.deb
|
||||
```
|
||||
|
||||
## Linux (Pacman, Arch, x86_64) [#linux-pacman]
|
||||
|
||||
For Arch-based distributions, you can download the Pacman package and install it using `pacman`.
|
||||
|
||||
```bash filename="install.sh"
|
||||
wget https://github.com/UnstoppableSwap/unstoppableswap-gui/releases/download/v0.6.0/unstoppableswap-gui-0.6.0.pacman
|
||||
sudo pacman -U unstoppableswap-gui-0.6.0.pacman
|
||||
```
|
||||
|
||||
## Linux (AppImage) [#linux-appimage]
|
||||
|
||||
For other Linux distributions, you can download the AppImage and run it directly. It includes all dependencies and will work on most systems.
|
||||
|
||||
```bash filename="install.sh"
|
||||
wget https://github.com/UnstoppableSwap/unstoppableswap-gui/releases/download/v0.6.0/UnstoppableSwap-0.6.0.AppImage
|
||||
chmod +x UnstoppableSwap-0.6.0.AppImage
|
||||
./UnstoppableSwap-0.6.0.AppImage
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue