File tree Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ src/Pythonic/build.sh
8
8
python3 setup.py sdist
9
9
10
10
# DOWNLOAD CODE SERVER EXTENSIONS
11
+ src/code-server
11
12
12
13
# BUILD CONTAINER IMAGE
13
14
podman build -t pythonic:1.1 .
Original file line number Diff line number Diff line change 21
21
'public_html/static/python.ico' ,
22
22
'public_html/static/qtlogo.svg' ,
23
23
'public_html/static/qtloader.js' ,
24
- 'public_html/static/PythonicWeb .js' ,
25
- 'public_html/static/PythonicWeb .wasm' ,
26
- 'public_html/static/PythonicWeb .data' ,
27
- 'public_html/templates/PythonicWeb .html' ,
24
+ 'public_html/static/* .js' ,
25
+ 'public_html/static/* .wasm' ,
26
+ 'public_html/static/* .data' ,
27
+ 'public_html/templates/* .html' ,
28
28
'public_html/config/Toolbox/Basic/GenericPython.json' ,
29
29
'public_html/config/Toolbox/Basic/GenericPython.editor' ,
30
30
'public_html/config/Toolbox/Basic/Scheduler.json' ,
Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ QT += core gui websockets
3
3
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
4
4
5
5
6
+ # TARGET="PythonicWeb_1.1"
6
7
CONFIG += c++11
7
- # CONFIG += wasm
8
+ CONFIG += wasm
8
9
9
10
wasm {
10
11
DEFINES += WASM
Original file line number Diff line number Diff line change @@ -8,8 +8,7 @@ source ~/Dokumente/emsdk/emsdk_env.sh # Version 1.39.8
8
8
# make clean
9
9
make
10
10
11
- cp PythonicWeb.html public_html/static/
12
- cp qtloader.js public_html/static/
13
- cp PythonicWeb.wasm public_html/static/
14
- cp PythonicWeb.js public_html/static/
15
- cp PythonicWeb.data public_html/static/
11
+ cp * .html public_html/static/
12
+ cp * .wasm public_html/static/
13
+ cp * .js public_html/static/
14
+ cp * .data public_html/static/
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def reset_screen():
10
10
'|_| \__, |\__|_| |_|\___/|_| |_|_|\___|____/ \__,_|\___|_| |_| |_|\___/|_| |_|\n ' \
11
11
' |___/ \n '
12
12
13
- version = 'v1.0 \n '
13
+ version = 'v1.1 \n '
14
14
gitHub = 'Visit https://github.com/hANSIc99/Pythonic\n '
15
15
log_info_msg = '<<<<<<<<<<<< Logging directory ~/Pythonic/log/\n '
16
16
You can’t perform that action at this time.
0 commit comments