Installation
.exe Installation (recommended)
Install the .exe file here.
Unzip the downloaded file.
Run the .exe file.
Give the .exe file network access.
Go to http://localhost:8501/ to access the app.
Simply close the .exe file to stop running the app.
Where is settings.yaml and trades.ddb created?
The settings.yaml
and trades.ddb
will be created and read in the same directory as the .exe file.
.
├── paperpaws.exe
├── README.txt
├── settings.yaml <-
└── trades.ddb <-
Docker Installation
Simple
Open command prompt
Pull the Docker image
docker pull paperpaws/paper-paws-poc:1.0.0
Run the Docker image
docker run --name paper-paws-app -p 8501:8501 paperpaws/paper-paws-poc:1.0.0
Go to http://localhost:8501/ to access the app
Advanced
Clone the repository
git clone https://github.com/5zyyy/paper-paws-poc.git
Build the Docker image
docker build -t paper-paws-poc:1.0.0 .
Run Docker image (create container)
docker run --name paper-paws-app -p 8501:8501 paper-paws-poc:1.0.0
Go to http://localhost:8501/ to access the app
Save Docker image as .tar (optional)
docker save -o paper-paws-poc.tar paper-paws-poc:1.0.0
Reopening and closing the app
To run or stop the app from running, simply open Docker Desktop, navigate to containers and run/stop the app.



Clone from Github Repository
Clone the repository
git clone https://github.com/5zyyy/paper-paws-poc.git
Install dependencies
pip install -e .
pip install -r requirements.txt
Run the app
streamlit run .\src\app.py
Compile .exe file (optional)
python build.py
Last updated