marimo-learn / _server /README.md
mylessss's picture
chore: marimo learn HuggingFace gallery
9f1311f
|
raw
history blame
300 Bytes
# marimo learn server
This folder contains server code for hosting marimo apps.
## Running the server
```bash
uv run --no-project main.py
```
## Building a Docker image
```bash
docker build -t marimo-learn .
```
## Running the Docker container
```bash
docker run -p 8000:8000 marimo-learn
```