You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yarn/README_ZH.md

7.8 KiB

Yarn social

Yarn - 一个以隐私为中心的去中心化、自托管的社交媒体平台

英文

安装

二进制版本

请使用 Releases 页面提供的二进制版本

Homebrew

如果您使用 macOS 系统,我们提供了 Homebrew 安装包,其中包含了命令行客户端(yarnc)及服务端(yarnd)。

brew tap yarnsocial/yarn https://git.mills.io/yarnsocial/homebrew-yarn.git
brew install yarn

运行服务端:

yarnd

运行命令行客户端:

yarnc

使用源代码构建

如果您熟悉 Go 开发,按下面步骤构建:

  1. 克隆仓库 (重要)
git clone https://git.mills.io/yarnsocial/yarn.git
  1. 安装依赖项 (重要)

Linux, macOS:

make deps

请注意,为了使用媒体上传功能正常工作,您需要安装 ffmpeg 及相关 -dev 包。 请查阅您操作系统相关联的包及名字。

FreeBSD:

  • 安装 gmake
  • 安装 pkgconf pkg-config
gmake deps
  1. 编译

Linux, macOS:

make

FreeBSD:

gmake

用法

命令行客户端

  1. 登录到 Yarn.social
$ ./yarnc login
INFO[0000] Using config file: /Users/prologic/.twt.yaml
Username:
  1. 查看您的动态
$ ./yarnc timeline
INFO[0000] Using config file: /Users/prologic/.twt.yaml
> prologic (50 minutes ago)
Hey @rosaelefanten 👋 Nice to see you have a Twtxt feed! Saw your [Tweet](https://twitter.com/koehr_in/status/1326914925348982784?s=20) (_or at least I assume it was yours?_). Never heard of `aria2c` till now! 🤣 TIL

> dilbert (2 hours ago)
Angry Techn Writers ‣ https://dilbert.com/strip/2020-11-14
  1. 发表 Twt (推文):
$ ./yarnc post
INFO[0000] Using config file: /Users/prologic/.twt.yaml
Testing `yarn` the command-line client
INFO[0015] posting twt...
INFO[0016] post successful

查看 yarnc 帮助文档:

$ yarnc help
This is the command-line client for Yarn.social pods running
yarnd. This tool allows a user to interact with a pod to view their timeline,
following feeds, make posts and managing their account.

Usage:
  yarnc [command]

Available Commands:
  completion  generate the autocompletion script for the specified shell
  help        Help about any command
  login       Login and authenticate to a Yarn.social pod
  post        Post a new twt to a Yarn.social pod
  stats       Parses and performs statistical analytis on a Twtxt feed given a URL or local file
  timeline    Display your timeline

Flags:
  -c, --config string   set a custom config file (default "/Users/prologic/.yarnc.yml")
  -D, --debug           Enable debug logging
  -h, --help            help for yarnc
  -T, --token string    yarnd API token to use to authenticate to endpoints (default "$YARNC_TOKEN")
  -U, --uri string      yarnd API endpoint URI to connect to (default "http://localhost:8000/api/v1/")

Use "yarnc [command] --help" for more information about a command.

使用 Docker Compose 部署

运行

docker-compose up -d

然后访问:http://localhost:8000/

Web

运行 yarnd:

yarnd -R

注意: 默认情况下禁止用户注册,使用 -R 标记开放用户注册。

访问:http://localhost:8000/

您还可以配置其它选项或通过环境变量来配置。

使用下面命令查看可用选项:

$ ./yarnd --help

环境变量名称全部使用大写字母并且使用 _ 代替 -

配置您的 Pod

最小配置项:

  • -d /path/to/data
  • -s bitcask:///path/to/data/twtxt.db (可能会简化并默认使用这个)
  • -n <name> pod 名称
  • -u <url> 提供网络访问的 URL (公开URL)
  • -R 开放用户注册
  • -O 开放用户配置

其它更多配置应使用环境变量来完成。

建议 使用环境变量设置一个管理员账号:

  • ADMIN_USER=username
  • ADMIN_EMAIL=email

为了配置用于密码恢复和 /support 端点的电子邮件设置 /abuse,您应该设置适当的 SMTP_ 值。

强烈建议 您还设置以下值来保护您的 Pod

  • API_SIGNING_KEY
  • COOKIE_SECRET
  • MAGICLINK_SECRET

这些值应使用安全的随机数生成器生成,并且长度为 64 。您可以使用以下 shell 脚本为您的 pod 生成上述秘密值:

$ cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1

您可以使用 shell 脚本./tools/gen-secrets.sh 方便的生成 pod 生产环境的密钥,复制/粘贴到 docker-compose.yml 文件正确的位置。

不要 公开发布或分享这些值,确保 仅将它们设置为环境变量。

注意: Dockerfile 指定容器作为 yarnd(uid=1000) 用户运行, 确保您挂载到容器中并用作数据存储 (-d/--data) 路径和数据库存储路径 (-s/--store) 的任何卷都已正确配置为具有正确的用户/组所有权。例如:chorn -R 1000:1000 /data

生产环境部署

Docker Swarm

您可以使用提供的 yarn.yamlyarnd 部署到 Docker Swarm 集群,环境依赖 Traefik 作为 负载均衡器,因此您还必须在集群中正确配置和运行该负载均衡器。

docker stack deploy -c yarn.yml

贡献

如果您对这个项目有兴趣,我们非常欢迎!您可以通过以下方式做出贡献:

  • 提交 Issue -- 任何 bug 或者新功能的建议或意见
  • 提交 Pull-Request 欢迎提交 PR 改进项目!

请参阅 项南指南开发文档 或在 /docs 上查看。

贡献者

感谢所有为这个项目做出贡献的人,在他们自己的项目或产品中使用测试,修复错误,提高性能,甚至修复文档中的小错别字!谢谢你们的持续贡献!

您可以找到一个 AUTHORS 文件,其中保存了项目贡献者的列表。 如果您贡献 PR请考虑在此处添加您的姓名。

相关项目

开源协议

yarn 基于 AGPLv3 开源协议