chattium is an anonymous chat room PWA powered by websocket
639
Chattium is a tiny chatroom PWA powered by socket.io and create-react-app
docker run --rm -d -p 3000:3000 liuderchi/chattium:latest
Now you can go to locaohost:3000 in browser
git clone https://github.com/liuderchi/chattium.git
cd chattium
// 1. start server
npm i && npm run start:watch
// 2. open another terminal, start client
cd client; yarn && yarn run start
Now you can go to locaohost:3001 in browser
git clone https://github.com/liuderchi/chattium.git
cd chattium
docker run -it --rm -d \
-p 3000:3000 -p 3001:3001 \
-v $PWD:/root/chattium \
liuderchi/chattium:raw-env-node-yarn
docker exec -it MYCONTAINER sh
~/chattim $ npm i && npm run start:watch
docker exec -it MYCONTAINER sh
~/chattium $ cd client
~/chattium/client $ yarn && yarn run start
Now you can go to locaohost:3001 in browser
cd client && \
yarn run build:now && \
rm build/static/js/*.map
cd ../ && now
Content type
Image
Digest
Size
104.3 MB
Last updated
almost 8 years ago
docker pull liuderchi/chattium