Spaces:
Running
Running
File size: 387 Bytes
3b7283c 9f1311f 5890b75 9f1311f 5890b75 9f1311f b863d23 3b7283c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
---
title: Readme
marimo-version: 0.18.4
---
# marimo learn server
This folder contains server code for hosting marimo apps.
## Running the server
```bash
cd _server
uv run --no-project main.py
```
## Building a Docker image
From the root directory, run:
```bash
docker build -t marimo-learn .
```
## Running the Docker container
```bash
docker run -p 7860:7860 marimo-learn
``` |