Initial commit: abyssVpn project

- Tauri desktop app (apps/desktop)
- Python Django API service (services/api)
- Deployment scripts and docs
This commit is contained in:
arthur_chen
2026-05-15 09:06:10 +08:00
commit f69efb67ad
146 changed files with 18039 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
@echo off
setlocal
call "%~dp0config.bat"
echo [AbyssInfo] Uploading environment installer ...
%SCP_BASE% "%~dp0remote\install_env.sh" %SERVER_USER%@%SERVER_HOST%:/tmp/abyssinfo_install_env.sh
if errorlevel 1 (
echo [AbyssInfo] Upload failed.
exit /b 1
)
echo [AbyssInfo] Installing server environment ...
%SSH_BASE% "chmod +x /tmp/abyssinfo_install_env.sh && /tmp/abyssinfo_install_env.sh"
if errorlevel 1 (
echo [AbyssInfo] Environment installation failed.
exit /b 1
)
echo [AbyssInfo] Environment installation completed.