mirror of
https://github.com/tanrax/RSSingle.git
synced 2025-03-03 03:35:46 +01:00
30 lines
448 B
Markdown
30 lines
448 B
Markdown
|
||
# 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> |