A simple chat app using Angular 4 and socket.io
- Build the frontend.
$ npm run build
- Launch the server. The environment variable PORT defines the port the server listens on (default is 80).
$ npm start Will run on port 80 $ PORT=1234 npm start Will run on port 1234
- Build the frontend.
$ npm run build
- Build the container.
$ docker build -t simple-chat .
- Run the container. You can define the port of the app with the
-p
argument.$ docker run -d -p 80:80 simple-chat Will run on port 80 $ docker run -d -p 1234:80 simple-chat Will run on port 1234
Please see our contribution guide for instructions on how to run the app for development.
Please feel free to contribute to this project! Just follow our contribution guide.
This project is licensed under the terms of the MIT License