dependabot[bot] 45788234ed
Bump three from 0.119.1 to 0.125.0 in /frontend
Bumps [three](https://github.com/mrdoob/three.js) from 0.119.1 to 0.125.0.
- [Release notes](https://github.com/mrdoob/three.js/releases)
- [Commits](https://github.com/mrdoob/three.js/commits)

---
updated-dependencies:
- dependency-name: three
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-10-25 07:15:21 +00:00
.
2021-10-24 22:53:00 +02:00
2021-08-25 01:25:49 +02:00
.
2021-10-25 09:14:05 +02:00
wip
2021-10-24 21:50:55 +02:00
wip
2021-10-24 21:50:55 +02:00
wip
2021-07-26 17:56:35 +02:00
wip
2021-07-25 20:45:15 +02:00
2021-08-25 01:25:49 +02:00
2021-08-24 23:19:50 +02:00
.
2021-09-02 22:54:22 +02:00

Tabby Web

This is the exact code that runs at https://tabby.sh. In fact, it's being deployed straight out of this repository.

You can use this to deploy your own copy or to make improvements - pull requests are welcome!

How it works

Tabby Web serves the Tabby Terminal as a web application while managing multiple config files, authentication, and providing TCP connections via a separate gateway service.

Requirements

  • Python 3.7+
  • A database server supported by Django (MariaDB, Postgres, SQLite, etc.)
  • Storage for distribution files - local, S3, GCS or others supported by fsspec

Using Docker images

Tabby Web consists of two Docker images - backend and frontend. See an example set up in docker-compose.yml

Environment variables

Frontend

  • BACKEND_URL (required if running the backend in a separate Docker container).
  • WEB_CONCURRENCY

Backend

  • DATABASE_URL (required).
  • FRONTEND_URL
  • APP_DIST_STORAGE: a file://, s3://, or gcs:// URL to store app distros in.
  • SOCIAL_AUTH_*_KEY & SOCIAL_AUTH_*_SECRET: social login credentials, supported providers are GITHUB, GITLAB, MICROSOFT_GRAPH and GOOGLE_OAUTH2.

Adding Tabby app versions

  • docker-compose run backend ./manage.py add_version 1.0.156-nightly.2

Development setup

Put your environment vars (DATABASE_URL, etc.) in the .env file in the root of the repo.

For the frontend:

cd frontend
yarn
yarn run build # or yarn run watch

For the backend:

cd backend
poetry install
./manage.py migrate # set up the database
./manage.py add_version 1.0.156-nightly.2 # install an app distribution
PORT=9000 poetry run gunicorn # optionally with --reload

Security

  • When using Tabby Web for SSH/Telnet connectivity, your traffic will pass through a hosted gateway service. It's encrypted in transit (HTTPS) and the gateway servers authenticate themselves with a certificate before connections are made. However there's a non-zero risk of a MITM if a gateway service is compromised and the attacker gains access to the service's private key.
  • You can alleviate this risk by hosting your own gateway service, or your own copy of Tabby Web altogether.
Description
Tabby Web - an SSH/Telnet/Serial client in your browser.
Readme MIT 9.8 MiB
Languages
Python 38.4%
TypeScript 34.2%
Pug 9%
SCSS 8.9%
JavaScript 4.3%
Other 5.2%