Add login support and oobe

This commit is contained in:
2026-01-29 15:11:00 -06:00
parent 3919384b57
commit 8007eeb043

View File

@@ -8,16 +8,32 @@ from source:
```bash ```bash
cd Tesses.YouTubeDownloader.Server cd Tesses.YouTubeDownloader.Server
crosslang install-webapp crosslang install-webapp
mkdir ~/tytd-work # or any directory
cd ~/tytd-work # or any directory (you must run the command in this folder every time you start the server) # Save to Videos
crosslang webapp tytd2025 --port=3255
# Save anywhere (unix, replace /path/to/tytd with the folder you want)
export TYTDDIR=/path/to/tytd
crosslang webapp tytd2025 --port=3255
# Save anywhere (windows, replace C:\path\to\tytd with the folder you want)
SET TYTDDIR=/path/to/tytd
crosslang webapp tytd2025 --port=3255 crosslang webapp tytd2025 --port=3255
``` ```
from package manager: from package manager:
```bash ```bash
crosslang install-webapp Tesses.YouTubeDownloader.Server crosslang install-webapp Tesses.YouTubeDownloader.Server
mkdir ~/tytd-work # or any directory
cd ~/tytd-work # or any directory (you must run the command in this folder every time you start the server) # Save to Videos
crosslang webapp tytd2025 --port=3255
# Save anywhere (unix, replace /path/to/tytd with the folder you want)
export TYTDDIR=/path/to/tytd
crosslang webapp tytd2025 --port=3255
# Save anywhere (windows, replace C:\path\to\tytd with the folder you want)
SET TYTDDIR=/path/to/tytd
crosslang webapp tytd2025 --port=3255 crosslang webapp tytd2025 --port=3255
``` ```