Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/improve pnl graph #22

Merged
merged 6 commits into from
May 19, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
(feat) add makefile
  • Loading branch information
cardosofede committed May 18, 2023
commit 02b3a65434ad4dced8c3e7e17a33ff6f66af9e4c
19 changes: 19 additions & 0 deletions Makefile
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