├── .gitignore ├── README.md ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.js │ ├── Chat.js │ ├── Message.js │ └── index.js └── server ├── Pipfile ├── Pipfile.lock ├── README.md ├── client.py ├── main.py ├── requirements.txt └── sockets.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/src/Chat.js -------------------------------------------------------------------------------- /client/src/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/src/Message.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/client/src/index.js -------------------------------------------------------------------------------- /server/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/server/Pipfile -------------------------------------------------------------------------------- /server/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/server/Pipfile.lock -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/server/README.md -------------------------------------------------------------------------------- /server/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/server/client.py -------------------------------------------------------------------------------- /server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/server/main.py -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/server/requirements.txt -------------------------------------------------------------------------------- /server/sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrdeveloper124/socketio-app/HEAD/server/sockets.py --------------------------------------------------------------------------------