1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/README.md

106 lines
4.1 KiB
Markdown
Raw Normal View History

2018-04-09 11:01:44 +08:00
# Hack.Chat
[https://hack.chat/](https://hack.chat/) is a minimal, distraction-free, account-less, log-less, disappearing chat service that is easily deployable as your own service. The client comes bundled with LaTeX rendering provided by [https://github.com/Khan/KaTeX](https://github.com/Khan/KaTeX).
2018-03-10 15:47:00 +08:00
This is a backwards compatible continuation of the work by Andrew Belt [https://github.com/AndrewBelt/hack.chat](https://github.com/AndrewBelt/hack.chat). The server code has been updated to ES6 along with several new features- including new commands and hot-reload of the commands/protocol.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
### Prerequisites
2018-04-09 11:01:44 +08:00
The following versions are __required__:
2018-03-10 15:47:00 +08:00
```
node >= 8.10.0
npm >= 5.7.1
```
2018-04-09 11:01:44 +08:00
An installation guide for you operating system can be found at: [https://nodejs.org/en/download/package-manager/](https://nodejs.org/en/download/package-manager/)
2018-03-10 15:47:00 +08:00
### Installing
2018-04-09 11:01:44 +08:00
First you will first need to clone this git, if you are unfamiliar with this processes read [https://help.github.com/articles/cloning-a-repository/](https://help.github.com/articles/cloning-a-repository/), or to clone with git:
```
git clone https://github.com/hack-chat/main.git
```
Once cloned, the server will need to be setup. Using your terminal:
2018-03-10 15:47:00 +08:00
```
2018-04-09 11:01:44 +08:00
cd main/server/
2018-03-10 15:47:00 +08:00
npm install
```
Or on a Windows machine with Yarn installed:
```
2018-04-09 11:01:44 +08:00
cd main/server/
2018-03-10 15:47:00 +08:00
yarn install
```
2018-04-09 11:01:44 +08:00
This will install the required packages to run hack.chat. Next it will need to be configured, again in your terminal:
2018-03-10 15:47:00 +08:00
```
node main.js
```
The configuration script will execute the initial server setup by requesting input. Follow the steps until it finishes:
```
Note: npm/yarn run config will re-run this utility.
You will now be asked for the following:
- Admin Name, the initial admin username
- Admin Pass, the initial admin password
- Port, the port for the websocket
- Salt, the salt for username trip
prompt: adminName: admin
prompt: adminPass: ****
prompt: websocketPort: (6060)
prompt: tripSalt: ************
Config generated! You may now start the server normally.
```
2018-04-09 11:01:44 +08:00
___Note:___ if you change the `websocketPort` option during the config setup then these changes will need to be reflected on line 64 of the [client.js](https://github.com/hack-chat/main/blob/master/client/client.js#L64).
After the config script runs, the process will exit & will need to be relaunched. For a production environment we recommend using [PM2](https://github.com/Unitech/pm2) to start the server:
```
cd main/server/
pm2 start main.js --name HackChat
```
Launch `main/client/index.html`, you may now begin development or deploy to production environment.
2018-03-10 15:47:00 +08:00
## Deployment
2018-04-09 11:01:44 +08:00
After the initial installation and configuration, push everything except the node_modules folder to the live server and re-run:
2018-03-10 15:47:00 +08:00
```
npm install
```
2018-04-09 11:01:44 +08:00
You can now run start the server software with a process manager like [PM2](https://github.com/Unitech/pm2). The client code will need to be copied into your http server directory. If you plan on using SSL to serve the client; you will need to use a reverse proxy, as TLS is not natively supported by the hack.chat server software (this may change in future releases).
2018-03-10 15:47:00 +08:00
## Authors
* **Marzavec** - *Initial work* - [https://github.com/marzavec](https://github.com/marzavec)
2018-04-09 11:01:44 +08:00
* **MinusGix** - *Base updates* - [https://github.com/MinusGix](https://github.com/MinusGix)
2018-03-10 15:47:00 +08:00
2018-03-10 15:51:46 +08:00
See also the list of [contributors](https://github.com/hack-chat/main/graphs/contributors) who participated in this project.
2018-03-10 15:47:00 +08:00
## License
This project is licensed under the WTFPL License - see the [http://www.wtfpl.net/txt/copying/](http://www.wtfpl.net/txt/copying/) file for details
## Acknowledgments
* Andrew Belt, [https://github.com/AndrewBelt/hack.chat](https://github.com/AndrewBelt/hack.chat), for original base work
2018-04-09 11:01:44 +08:00
* wwandrew [https://github.com/wwandrew/](https://github.com/wwandrew/), for finding server flaws (including attack vectors) and submitting ~~___incredibly detailed___~~ bug reports