├── .do ├── app.yaml └── deploy.template.yaml ├── .github └── FUNDING.yml ├── Dockerfile ├── LICENSE ├── README.md └── app ├── app.py └── pyproject.toml /.do/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmancevo/digitalocean_docker_streamlit/HEAD/.do/app.yaml -------------------------------------------------------------------------------- /.do/deploy.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmancevo/digitalocean_docker_streamlit/HEAD/.do/deploy.template.yaml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmancevo/digitalocean_docker_streamlit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmancevo/digitalocean_docker_streamlit/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmancevo/digitalocean_docker_streamlit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmancevo/digitalocean_docker_streamlit/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- 1 | import streamlit as st 2 | 3 | st.title("Hello World!") 4 | -------------------------------------------------------------------------------- /app/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmancevo/digitalocean_docker_streamlit/HEAD/app/pyproject.toml --------------------------------------------------------------------------------