|  | ||
|---|---|---|
| wwwroot | ||
| .gitignore | ||
| BringTYTDBack.csproj | ||
| Creds.cs | ||
| Dockerfile | ||
| LICENSE.md | ||
| Program.cs | ||
| README.md | ||
		
			
				
				README.md
			
		
		
			
			
		
	
	Bring TYTD Back
I wanted to bring TYTD back so I did somewhat
This project requires tytd-cli to be installed on a ssh (password protected server, could use private key if you modify Program.cs async Task AddVideo), the tytd-cli must be installed on PATH
To Configure you must add a file called Creds.priv.cs with the following content
    public static partial class Creds
    {
        static string _ip = "YOUR_SSH_SERVER";
        static string _username = "YOUR_SSH_USERNAME";
        static string _password = "YOUR_SSH_PASSWORD";
        static string _dir = "YOUR_SSH_PATH";
        static int _port = 22; //if ssh is on different port change it here
        static string _redir = "/not_found?v=%ID%"; //if a video does not exist redirect here
        
        static string _alreadyExists=""; //must be http(s) url such as https://tytdarchive.site.tesses.net/have.php?v= that the response must return "true" if it already exists or "false" if not
    }
WITHOUT DOCKER
then compile the project using
    dotnet publish -c Release -o out --self-contained -r linux-x64 -p:PublishSingleFile=true -p:PublishReadyToRun=true
then copy wwwroot to out
WITH DOCKER
    docker build -t bring-tytd-back:latest .
    docker run --restart unless-stopped -p 3252:3252 -d bring-tytd-back:latest