Collaboration
Website • Docs • Demo • Docker
To learn more about configuration, usage and features of The Lounge, take a look at the website.
The Lounge is the official and community-managed fork of Shout, by Mattias Erming.
The Lounge requires latest Node.js LTS version or more recent.
The Yarn package manager is also recommended.
If you want to install with npm, --unsafe-perm
is required for a correct install.
Please refer to the install and upgrade documentation on our website for all available installation methods.
The following commands install and run the development version of The Lounge:
git clone https://github.com/thelounge/thelounge.git
cd thelounge
yarn install
NODE_ENV=production yarn build
yarn start
When installed like this, thelounge
executable is not created. Use node index <command>
to run commands.
⚠️ While it is the most recent codebase, this is not production-ready! Run at your own risk. It is also not recommended to run this as root.
Simply follow the instructions to run The Lounge from source above, on your own fork.
Before submitting any change, make sure to:
yarn test
to execute linters and the test suite
yarn format:prettier
if linting failsyarn build:client
if you change or add anything in client/js
or client/components
public/
by webpackyarn build:server
if you change anything in server/
dist/
by tscyarn dev
can be used to start The Lounge with hot module reloadingTo ensure that you don't commit files that fail the linting, you can install a pre-commit git hook.
Execute yarn githooks-install
to do so.