Coder Social home page Coder Social logo

shashank-srivastava1 / streamlit-app Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bitsofparag/streamlit-app

0.0 0.0 0.0 21 KB

A collection of some data-analytics apps rendered by Streamlit

License: Apache License 2.0

Shell 6.89% Dockerfile 16.99% Makefile 35.06% Python 41.06%

streamlit-app's Introduction

Streamlit App

======================

A collection of data-analytics apps rendered by Streamlit

Features

Run example app

docker run -it --rm \
  -p 8501:8501 bitsofparag/streamlit-example:latest

Run your Streamlit app

  1. Create app from example template:
cp -r apps/streamlit-example apps/my-streamlit-app
  1. Then cd apps/my-streamlit-app and add your code in main.py

  2. Test if your app works:

cd apps/my-streamlit-app && streamlit run main.py
  1. Update VERSION file with a correct tag value

  2. Build the container for your app, like so:

cd apps/my-streamlit-app
docker build -t local/my-streamlit-app:$(cat VERSION) .
  1. Run your streamlit app (like the example app above):
docker run -it --rm \
  -p 8501:8501 \
  local/my-streamlit-app:$(cat VERSION)

If you want to mount your local working copy:

docker run -it --rm \
  -v ${PWD}:/usr/local/src/app \
  -p 8501:8501 \
  local/my-streamlit-app:$(cat VERSION)

Contributing Guidelines

Please make a fork of the repo, make changes to your local copy and finally make a pull-request to this repository.

More more information about forking-based gitflow, please refer to this article.

streamlit-app's People

Contributors

bitsofparag avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.