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
- Host: GitHub
- URL: https://github.com/devianllert/chatio
- Owner: devianllert
- Created: 2019-07-10T09:20:21.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T04:22:55.000Z (over 3 years ago)
- Last Synced: 2025-09-15T01:28:50.243Z (9 months ago)
- Language: JavaScript
- Size: 2.51 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
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
```