thelounge
v4.4.3
网站 • 文档 • 演示 • Docker
要了解有关 The Lounge 的配置、使用和功能的更多信息,请访问该网站。
The Lounge 是由 Mattias Erming 开发的 Shout 官方和社区管理的分支。
Lounge 需要最新的 Node.js LTS 版本或更高版本。还推荐使用 Yarn 包管理器。如果您想使用 npm 安装,则需要--unsafe-perm
才能正确安装。
请参阅我们网站上的安装和升级文档,了解所有可用的安装方法。
以下命令安装并运行 The Lounge 的开发版本:
git clone https://github.com/thelounge/ thelounge .git
cd thelounge
yarn install
NODE_ENV=production yarn build
yarn start
像这样安装时,不会创建thelounge
可执行文件。使用node index <command>
运行命令。
只需按照说明在您自己的 fork 上从上面的源代码运行 The Lounge 即可。
在提交任何更改之前,请确保:
yarn test
来执行linter和测试套件yarn format:prettier
client/js
或client/components
中更改或添加任何内容,请运行yarn build:client
public/
server/
中的任何内容,请运行yarn build:server
dist/
yarn dev
可用于通过热模块重新加载来启动 The Lounge为了确保您不会提交无法通过 linting 的文件,您可以安装预提交 git hook。执行yarn githooks-install
来执行此操作。