Lets bring TYTD Back
Go to file
Mike Nolan ff931a0b53 Fix too many open files on server 2024-10-19 00:24:37 -05:00
wwwroot Bring TYTD Back 2024-10-19 00:17:43 -05:00
.gitignore Bring TYTD Back 2024-10-19 00:17:43 -05:00
BringTYTDBack.csproj Bring TYTD Back 2024-10-19 00:17:43 -05:00
Creds.cs Bring TYTD Back 2024-10-19 00:17:43 -05:00
Dockerfile Bring TYTD Back 2024-10-19 00:17:43 -05:00
LICENSE.md GPLv3 it 2024-10-19 00:18:46 -05:00
Program.cs Fix too many open files on server 2024-10-19 00:24:37 -05:00
README.md Bring TYTD Back 2024-10-19 00:17:43 -05:00

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";
    }

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 -p 3252:3252 -d bring-tytd-back:latest