Files
RSSingle/Documentation/Development.md
ElectronicsArchiver 2668c1d29a Formatted Command
2022-06-25 14:32:08 -04:00

30 lines
448 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Development
<br>
## Compiling
*Commands are run from within the`/Source/`folder.*
<br>
```shell
pyinstaller --onefile rssingle.py
```
<br>
### Old Versions
```shell
docker run \
--rm \
--volume $PWD:/app \
python:3.8-buster \
/bin/bash -c \
"cd /app; pip3 install -r requirements.txt; pyinstaller --onefile rssingle.py"
```
You will find the binary in `/dist/`.
<br>