Skip to content

Commit a7ee8cb

Browse files
committed
v1.9 ready
1 parent bbd42d2 commit a7ee8cb

File tree

10 files changed

+30
-7
lines changed

10 files changed

+30
-7
lines changed

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.9
2+
3+
4+
15
1.8
26

37
CCXT: Fixed bug querying OHLCV data

Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Full multi-processing and multi-threading capable.
1010
#
1111
#
12-
#CreationDate: 05.04.2021
12+
#CreationDate: 10.11.2021
1313
#Creator: Stephan Avenwedde
1414
#
1515
#

build_rpi.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/sh
2+
3+
# BUILD WASM FRONTEND
4+
5+
#src/Pythonic/build.sh
6+
7+
8+
# BUILD PIP PACKAGE RPI
9+
cp setup_rpi.py setup.py
10+
cp setup_rpi.cfg setup.cfg
11+
python3 setup.py sdist
12+
13+
# DOWNLOAD CODE SERVER EXTENSIONS
14+
#src/code-server/download.sh
15+
16+
# BUILD CONTAINER IMAGE
17+
#podman build -t pythonicautomation/pythonic:1.7 .

build.sh renamed to build_x86.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ cp setup_x86.py setup.py
99
cp setup_x86.cfg setup.cfg
1010
python3 setup.py sdist
1111

12-
# BUILD PIP PACKAGE x86
13-
cp setup_rpi.py setup.py
14-
cp setup_rpi.cfg setup.cfg
15-
python3 setup.py sdist
1612

1713
# DOWNLOAD CODE SERVER EXTENSIONS
1814
#src/code-server/download.sh

dist/Pythonic-1.9.tar.gz

5.15 MB
Binary file not shown.

dist/PythonicRPI-1.9.tar.gz

5.14 MB
Binary file not shown.

setup_rpi.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
'public_html/static/GPIO_Read.png',
2828
'public_html/static/GPIO_Write.png',
2929
'public_html/static/Telegram.png',
30+
'public_html/static/Email.png',
3031
'public_html/static/CCXT.png',
3132
'public_html/static/CCXT_Method.png',
3233
'public_html/static/python.ico',

setup_x86.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
'public_html/static/GenericProcess.png',
2626
'public_html/static/ProcessPipe.png',
2727
'public_html/static/Telegram.png',
28+
'public_html/static/Email.png',
2829
'public_html/static/CCXT.png',
2930
'public_html/static/CCXT_Method.png',
3031
'public_html/static/python.ico',

src/commands.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
# Image bauen
99
podman build -t Pythonic:0.1 .
10+
podman build -t pythonicautomation/pythonic:1.9 .
1011

1112
# Image entfernen
1213
podman rmi <image-name>
@@ -15,6 +16,10 @@ podman image rm
1516
# Images auflisten
1617
podman images
1718

19+
# Open bash in running container
20+
21+
podman exec -i -t <container-id> /bin/bash
22+
1823
# Container starten - hostPort:guestPort
1924
# Ports are exposed to 0.0.0.0 by default
2025
# To restrict this exportse to 127.0.0.1:7000:7000
@@ -23,9 +28,8 @@ podman run -d --name Pythonic -p 7000:7000 -p 8000:8000 pythonic:<tag>
2328

2429
# login to remote repository
2530
podman login -u pythonicautomation https://index.docker.io/v1/
31+
podman login -u pythonicautomation index.docker.io
2632

27-
# re-tag image
28-
podman image tag pythonic:1.8 pythonicautomation:1.8
2933

3034
# push image
3135
podman push pythonicautomation/pythonic:<tag>

0 commit comments

Comments
 (0)