Jianhui Zhao 1ea2a1464e fix(ui): fix css style for Home page
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2023-05-29 21:32:59 +08:00
2021-01-13 23:02:35 +08:00
2021-02-02 19:30:28 +08:00
2021-09-16 11:53:15 +00:00
2023-05-29 21:32:59 +08:00
2021-01-26 22:50:39 +08:00
2022-09-25 21:43:48 +08:00
2018-09-08 17:16:04 +08:00
2018-01-17 21:31:35 +08:00
2022-09-25 17:08:13 +08:00
2022-09-25 16:25:41 +08:00
2022-05-03 00:26:34 +08:00
2021-09-22 11:58:41 +00:00
2018-03-14 22:37:04 +08:00
2018-03-14 22:37:04 +08:00
2022-05-03 00:26:34 +08:00
2022-09-25 16:25:41 +08:00
2022-05-27 23:48:01 +08:00
2020-02-10 21:05:46 +08:00
2022-05-03 00:26:34 +08:00
2022-05-03 00:26:34 +08:00
2022-09-25 17:08:13 +08:00
2019-09-03 14:57:16 +08:00
2022-05-03 00:26:34 +08:00
2022-09-25 21:43:48 +08:00
2022-09-25 21:43:48 +08:00
2022-05-03 00:26:34 +08:00
2022-05-03 00:40:03 +08:00
2022-05-12 21:45:44 +08:00

rttys(中文)

license PRs Welcome Issue Welcome Release Version Build Status

This is the server program of rtty

Authorization(optional)

Token

Generate a token

$ rttys token
Please set a password:******
Your token is: 34762d07637276694b938d23f10d7164

Use token

$ rttys run -t 34762d07637276694b938d23f10d7164

mTLS

You can enable mTLS by specifying device CA storage (valid file) in config file or from CLI (variable ssl-cacert). Device(s) without valid CA in storage will be disconnected in TLS handshake.

Database Preparation

Sqlite

s#qlite://rttys.db

MySql or Mariadb

mysql://rttys:rttys@tcp(localhost)/rttys

On database instance, login to database console as root:

mysql -u root -p

Create database user which will be used by Rttys, authenticated by password. This example uses 'rttys' as password. Please use a secure password for your instance.

CREATE USER 'rttys' IDENTIFIED BY 'rttys';

Create database with UTF-8 charset and collation. Make sure to use utf8mb4 charset instead of utf8 as the former supports all Unicode characters (including emojis) beyond Basic Multilingual Plane. Also, collation chosen depending on your expected content. When in doubt, use either unicode_ci or general_ci.

CREATE DATABASE rttys CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';

Grant all privileges on the database to database user created above.

GRANT ALL PRIVILEGES ON rttys.* TO 'rttys';
FLUSH PRIVILEGES;

Quit from database console by exit.

Docker

sudo docker run -it -p 5912:5912 -p 5913:5913 zhaojh329/rttys:latest

Contributing

If you would like to help making rttys better, see the CONTRIBUTING.md file.

Description
⚠️ ARCHIVED: Original GitHub repository no longer exists. Preserved as backup on 2026-02-27T09:20:46.591Z
Readme MIT 71 MiB
Languages
GO 49.1%
Vue 47.9%
Shell 2.6%
Dockerfile 0.4%