maxmcd / webtty

Share a terminal session over WebRTC
https://maxmcd.github.io/webtty/
MIT License
2.71k stars 143 forks source link

How to self-host the webtty web terminal #52

Closed VladislavGatsenko closed 2 months ago

VladislavGatsenko commented 2 months ago

Can you suggest how to deploy your server part on your domain, instead of https://maxmcd.github.io/webtty/ ?

I would be very grateful to you.

maxmcd commented 2 months ago

Definitely. It is all static, hosted on Github Pages. You can view the source files here: https://github.com/maxmcd/webtty/tree/gh-pages

And host them wherever you want.

ie, with python:

git clone git@github.com:maxmcd/webtty.git
cd webtty && git checkout gh-pages
python -m http.server 8080
VladislavGatsenko commented 2 months ago

Thanks, it turned out to be much easier than I was trying to make it :)

Sad that the project hasn't been updated in a while, it's very cool!

erbing commented 2 months ago

Can I build my own client-web locally?