Skip to content

Latest commit

 

History

History
35 lines (18 loc) · 656 Bytes

README.md

File metadata and controls

35 lines (18 loc) · 656 Bytes

Heylo

Chat application back-end server. (Still in development)

Installation

  1. Install latest stable nodejs version.

  2. Install mongodb community edition.

  3. Install compass (the UI tool for mongodb).

  4. Get the repo.

  5. Go in the root directory and type:

     $ cd ./server/
    
  6. Install the server's dependencies:

     $ npm install
    
  7. Config folder and sslcert folder hold secrets, so there are not in the repo.

  8. Run server in development:

     $ npm run dev
    
  9. Run server in debug (setup your IDE/Editor to execute this command when debugging):

     $ npm run debug
    
  10. Run server in production:

     $ npm run prod