mirror of
https://github.com/aljazceru/hummingbot-dashboard.git
synced 2025-12-30 11:34:25 +01:00
19 lines
298 B
Makefile
19 lines
298 B
Makefile
.ONESHELL:
|
|
.PHONY: run
|
|
.PHONY: uninstall
|
|
.PHONY: install
|
|
|
|
run:
|
|
streamlit run main.py
|
|
|
|
uninstall:
|
|
conda env remove -n dashboard
|
|
|
|
install:
|
|
conda env create -f environment_conda.yml
|
|
|
|
docker_build:
|
|
docker build -t hummingbot/dashboard:latest .
|
|
|
|
docker_run:
|
|
docker run -p 8501:8501 dashboard:latest
|