-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from hummingbot/feat/improve_pnl_graph
Feat/improve pnl graph
- Loading branch information
Showing
3 changed files
with
45 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.ONESHELL: | ||
.PHONY: run | ||
.PHONY: conda_remove | ||
.PHONY: conda_create | ||
|
||
run: | ||
streamlit run main.py | ||
|
||
env_remove: | ||
conda env remove -n dashboard | ||
|
||
env_create: | ||
conda env create -f environment.yml | ||
|
||
docker_build: | ||
docker build -t dashboard:latest . | ||
|
||
docker_run: | ||
docker run -p 8501:8501 dashboard:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters