https://github.com/tkers/hellittaa
Hellittää
https://github.com/tkers/hellittaa
Last synced: 4 months ago
JSON representation
Hellittää
- Host: GitHub
- URL: https://github.com/tkers/hellittaa
- Owner: tkers
- License: mit
- Created: 2017-05-02T21:44:01.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-08T11:30:48.000Z (about 8 years ago)
- Last Synced: 2025-02-14T22:36:26.454Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 106 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hellittää
Simple Slack-like chat application build with NodeJS (and React, Redux, SocketIO, WebPack, Babel).
## Building
### Building with NodeJS
First install the dependencies:
```bash
npm install
```And then compile from source:
```bash
npm run build
```### Building with Docker
Build the Docker image:
```bash
docker build -t helittaa .
```## Running
### Running with NodeJS
After building the project:
```bash
npm start
```### Running with Docker
After building the Docker image:
```bash
docker run --rm -p 8080:8080 helittaa
```## Development
For development, you can watch for changes and rebuild the application automatically:
```bash
npm run watch
```Make sure you have installed the npm dependencies first, and keep in mind that the `npm start` command does not
automatically restart the server upon changes (you could use `nodemon dist/server/index.js` for example).