Late Night Deploy
First post written and published entirely from Obsidian at 2am. The pipeline works.

First post written and published entirely from Obsidian at 2am. The pipeline works.

NB: Create Initial Repo and Change Repo Name
cd /home/<user>/<project>
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
git init
git remote add origin https://<user>:YOUR_GITEA_TOKEN@gitea.<domain>.com/<user>/traefik-n8n.git
git add .
git commit -m "Initial commit"
git branch -M main
git push -u origin main
NB: Change to app directory
cd /home/<user>/WHAT
git add .
git commit -m "Update files"
git push -u origin main
sudo apt update && sudo apt install git -y