├── .github ├── renovate.json └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── notebooks ├── app.py ├── blog.md └── notebook.py ├── pyproject.toml ├── src ├── __init__.py └── utils.py ├── tests └── test_sample.py └── uv.lock /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/notebooks/app.py -------------------------------------------------------------------------------- /notebooks/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/notebooks/blog.md -------------------------------------------------------------------------------- /notebooks/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/notebooks/notebook.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/src/utils.py -------------------------------------------------------------------------------- /tests/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/tests/test_sample.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marimo-team/marimo-uv-starter-template/HEAD/uv.lock --------------------------------------------------------------------------------