presenton/docs/quickstart.mdx
2025-06-24 14:27:27 +05:45

31 lines
733 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "Quickstart"
description: "Follow these steps to get Presenton up and running using Docker"
---
### 🚀 Run Presenton
#### 🔧 On Linux or macOS (Bash/Zsh):
```bash
docker run -it --name presenton -p 5000:80 -v "./user_data:/app/user_data" ghcr.io/presenton/presenton:v0.3.0-beta
````
#### 🪟 On Windows (PowerShell):
```bash
docker run -it --name presenton -p 5000:80 -v "${PWD}\user_data:/app/user_data" ghcr.io/presenton/presenton:v0.3.0-beta
```
> ✅ You can replace `5000` with any other available port to avoid conflicts.
### 🌐 Open in Your Browser
After running the container, open your browser and navigate to:
```
http://localhost:5000
```
Youre now ready to start generating presentations!