Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cart.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Processing Sales (Cart)"
sidebar_position: 6
sidebar_position: 5
slug: /cart
---

Expand Down
30 changes: 4 additions & 26 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Before installing Ambrosia, you need:

Docker is the containerization platform that runs Ambrosia and all its dependencies.

### For Linux (Debian)
### For Linux (Ubuntu/Debian)

Open your terminal and run the following commands:

Expand All @@ -46,27 +46,11 @@ Open your terminal and run the following commands:
sudo apt update

# Install Docker
sudo apt install docker.io
sudo apt install curl docker.io

# Install Docker Compose
sudo apt install docker-compose

# Add your user to the docker group (allows running Docker without sudo)
sudo usermod -aG docker $USER

# Refresh your user session to apply group changes
su - $USER
```

### For Linux (Ubuntu)

```bash
# Update package list
sudo apt update

# Install Docker with docker compose version 2

sudo apt install docker-compose-v2
sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose

# Add your user to the docker group (allows running Docker without sudo)
sudo usermod -aG docker $USER
Expand Down Expand Up @@ -198,18 +182,12 @@ From the `ambrosia` directory, run:
docker-compose up -d
```

if you are on **Ubuntu** run:
```bash
docker compose up -d
```

**What this command does:**
- `docker-compose up`: Starts all services defined in docker-compose.yml
- `-d`: Runs in "detached" mode (in the background)

**This process may take 3-5 minutes on first run**, especially on slower internet connections. Subsequent starts will be much faster.


## Step 5: Access Ambrosia

Congratulations! Ambrosia is now running on your system.
Expand Down
12 changes: 6 additions & 6 deletions docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ Don't worry if you're new to Lightning Network or Bitcoin - we'll guide you thro

This tutorial is organized into several sections:

1. **Installation** - Getting Ambrosia up and running
2. **Configuration** - Setting up your business
3. **Users Management** - Adding, editing or remove employees
4. **Products Management** - Adding, editing or remove products
5. **Processing Sales** - Processing payments and managing sales
6. **Wallet** - Monitor your Lightning Network node
1. **Install Ambrosia** - Installation
2. **Set Up Ambrosia** - Configuration
3. **Make a Product** - Products Management
4. **Sell Your Product** - Processing Sales
5. **Other Features** - Wallet, Users Management, Orders, Settings

## Ready to Begin?

Let's dive in and get Ambrosia running on your system! The next section will walk you through the installation process step by step.
11 changes: 11 additions & 0 deletions docs/other-features/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
sidebar_position: 6
title: Other Features
---

This section is organized as following:

1. **Wallet Management** - The transactions info
2. **Users Management** - Create, edit, and remove users
3. **Orders** - The Orders info
4. **Settings** - Store info, currency, language
2 changes: 1 addition & 1 deletion docs/users.md → docs/other-features/users.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Users Management"
sidebar_position: 4
sidebar_position: 2
slug: /users
---

Expand Down
2 changes: 1 addition & 1 deletion docs/wallet.md → docs/other-features/wallet.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Wallet"
sidebar_position: 7
sidebar_position: 1
slug: /wallet
---

Expand Down
2 changes: 1 addition & 1 deletion docs/products.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Products Management"
sidebar_position: 5
sidebar_position: 4
slug: /products
---

Expand Down