An open API service indexing awesome lists of open source software.

https://github.com/devianllert/chatio

Chat app. Built with React, Node.js
https://github.com/devianllert/chatio

Last synced: 11 days ago
JSON representation

Chat app. Built with React, Node.js

Awesome Lists containing this project

README

          

# Chat App

A project that runs a Node server and a create-react-app app via two separate containers, using Docker Compose.

## Development

### Server

```
cd server
npm install
```

```
npm run dev
```

### Client

```
cd client
npm install
```

```
npm start
```

## Production

```
docker-compose build
docker-compose up
```