From 6fda465a9c1e1200c598ff3ba6f237424c24c623 Mon Sep 17 00:00:00 2001 From: terwer Date: Tue, 1 Aug 2023 17:43:42 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=96=B0=E5=A2=9E=20Vercel=20?= =?UTF-8?q?=E5=92=8C=20Nginx=20=E6=9E=84=E5=BB=BA=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/static_build.py | 41 +++++++++++++++++++++++++++++++++++++++++ scripts/vercel_build.py | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 scripts/static_build.py create mode 100644 scripts/vercel_build.py diff --git a/scripts/static_build.py b/scripts/static_build.py new file mode 100644 index 00000000..48264dd3 --- /dev/null +++ b/scripts/static_build.py @@ -0,0 +1,41 @@ +# Copyright (c) 2023, Terwer . All rights reserved. +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# This code is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 2 only, as +# published by the Free Software Foundation. Terwer designates this +# particular file as subject to the "Classpath" exception as provided +# by Terwer in the LICENSE file that accompanied this code. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Terwer, Shenzhen, Guangdong, China, youweics@163.com +# or visit www.terwer.space if you need additional information or have any +# questions. + +import os + +import scriptutils + +if __name__ == "__main__": + # Switch to the working directory. + scriptutils.switch_workdir() + + # Get the current working directory. + cwd = scriptutils.get_workdir() + + # 获取当前工作目录 + print(os.getcwd()) + + # 设置环境变量 + os.environ['BUILD_TYPE'] = 'nginx' + + os.system("vue-tsc --noEmit && vite build") diff --git a/scripts/vercel_build.py b/scripts/vercel_build.py new file mode 100644 index 00000000..1d34e089 --- /dev/null +++ b/scripts/vercel_build.py @@ -0,0 +1,41 @@ +# Copyright (c) 2023, Terwer . All rights reserved. +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# This code is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 2 only, as +# published by the Free Software Foundation. Terwer designates this +# particular file as subject to the "Classpath" exception as provided +# by Terwer in the LICENSE file that accompanied this code. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Terwer, Shenzhen, Guangdong, China, youweics@163.com +# or visit www.terwer.space if you need additional information or have any +# questions. + +import os + +import scriptutils + +if __name__ == "__main__": + # Switch to the working directory. + scriptutils.switch_workdir() + + # Get the current working directory. + cwd = scriptutils.get_workdir() + + # 获取当前工作目录 + print(os.getcwd()) + + # 设置环境变量 + os.environ['BUILD_TYPE'] = 'vercel' + + os.system("vue-tsc --noEmit && vite build")