From f0afb3b662baf1a101c0398524658dab61bfc286 Mon Sep 17 00:00:00 2001 From: Rares Date: Tue, 10 Nov 2020 22:07:58 +0000 Subject: [PATCH] Updated build exec files --- build_exec.bat | 8 -------- build_exec.sh => build_mac.sh | 1 + build_win.sh | 11 +++++++++++ 3 files changed, 12 insertions(+), 8 deletions(-) delete mode 100644 build_exec.bat rename build_exec.sh => build_mac.sh (86%) mode change 100755 => 100644 create mode 100644 build_win.sh diff --git a/build_exec.bat b/build_exec.bat deleted file mode 100644 index 51e0f9c..0000000 --- a/build_exec.bat +++ /dev/null @@ -1,8 +0,0 @@ -pyinstaller ^ - --onefile ^ - --clean ^ - --add-data=templates;templates ^ - --add-data=static;static ^ - --exclude-module=config ^ - --name vidify ^ - server.py diff --git a/build_exec.sh b/build_mac.sh old mode 100755 new mode 100644 similarity index 86% rename from build_exec.sh rename to build_mac.sh index 3ffe79d..765db4a --- a/build_exec.sh +++ b/build_mac.sh @@ -1,3 +1,4 @@ +# This requires pyinstaller pyinstaller \ --windowed \ --clean \ diff --git a/build_win.sh b/build_win.sh new file mode 100644 index 0000000..6900b82 --- /dev/null +++ b/build_win.sh @@ -0,0 +1,11 @@ +# This requires pyinstaller and can be ran on Windows in Git Bash +pyinstaller \ + --onefile \ + --windowed \ + --clean \ + --noconfirm \ + --add-data="templates;templates" \ + --add-data="static;static" \ + --exclude-module=config \ + --name vidify-web \ + gui_main.py