diff --git a/README.md b/README.md index 1e27c54..1664e2d 100644 --- a/README.md +++ b/README.md @@ -8,16 +8,32 @@ from source: ```bash cd Tesses.YouTubeDownloader.Server 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 ``` from package manager: ```bash 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 ```