From 775fb26a245a6d16f136a107da9ab20fb2613c4f Mon Sep 17 00:00:00 2001 From: Neel Kamath Date: Fri, 18 May 2018 11:53:14 +0530 Subject: npm has been pkged with node for awhile now; we neednt list every pkg manager as tehy will know how to use their prefferred --- README.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 1f9fae2..91c6fed 100644 --- a/README.md +++ b/README.md @@ -16,23 +16,19 @@ This is a backwards compatible continuation of the [work by Andrew Belt](https:/ 1. [Clone](https://help.github.com/articles/cloning-a-repository/) the repository: `git clone https://github.com/hack-chat/main.git` 1. Change the directory: `cd main` -1. Install the dependencies using a package manager of your choice: - - npm: `npm install` - - yarn: `yarn install` -1. Configure: `node server/main.js` +1. Install the dependencies: `npm install` +1. Configure: `npm start` If you change the `websocketPort` option during the config setup then these changes will need to be reflected on [line 59 of client.js](https://github.com/hack-chat/main/blob/master/client/client.js#L59). # Usage 1. `cd` into the repository: `cd main` -1. Start the server with a process manager. For example, with [PM2](https://github.com/Unitech/pm2): `pm2 start server/main.js --name HackChat` +1. Start the server: `npm start` with a process manager. 1. Launch: `client/index.html` -1. (OPTIONAL) If you want to deploy your hack.chat instance to a server, push everything except the `node_modules` directory and install the dependencies using a package manager of your choice: - - npm: `npm install` - - yarn: `yarn install` +1. (OPTIONAL) If you want to deploy your hack.chat instance to a server, push everything except the `node_modules` directory and install the dependencies (`npm install`). - You can now run start the server software with a process manager. 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). + You can now run start the server software with a process manager like [PM2](https://github.com/Unitech/pm2) (e.g., `pm2 start server/main.js --name HackChat`). 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). # Contributing -- cgit v1.2.1