|
|
|
|
|
by qubyte
1675 days ago
|
|
The simplest way I can think of is Netlify. You can drag and drop a folder to deploy it. You'll get a sort of random looking domain and HTTPS. From there you can configure your own domain and deploy from GitHub etc. if you choose, but it's not required. |
|
Buy a domain, create a new site linked to a Github repo, and write HTML and push!
(Not a paid shill, just a happy user)
But to the question asker's original point
> what's the easiest way to sync a TXT file onto the web?
For my personal website I use a custom static site generator and rsync
> rsync -a output_folder/ website_host:/var/www/website_folder --delete;
where "website_host" is an alias in my SSH config file.
> [...] all of them require multiple manual steps and feel complex
I create a bash script called "publish.sh" in every project so I don't have to remember these things.