Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ngimdock/dask-websocket
The web socket project of a task management application in a synchronized way by a team.
https://github.com/ngimdock/dask-websocket
expressjs socket-io typescript websocket
Last synced: 12 days ago
JSON representation
The web socket project of a task management application in a synchronized way by a team.
- Host: GitHub
- URL: https://github.com/ngimdock/dask-websocket
- Owner: ngimdock
- License: mit
- Created: 2023-05-05T13:31:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-22T13:17:18.000Z (over 1 year ago)
- Last Synced: 2024-11-13T18:53:08.497Z (2 months ago)
- Topics: expressjs, socket-io, typescript, websocket
- Language: TypeScript
- Homepage:
- Size: 109 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Dask websocket
The web socket project of a task management application in a synchronized way by a team.
# Setup the project
## Step1: Clone the project
```bash
git clone https://github.com/ngimdock/dask-websocket.git
```## Step2: Install dependencies
```bash
yarn install
```## Step3: Setup .env file
```bash
cp .env.example .env
```Complete the required enviroments variables in the .env file
## Step4: Start the project in development mode
```bash
yarn dev
```# Note: Have issue port already in use
Kill the process in the runing port of your server, asuming you are using the port 8000.
Run the command:```bash
sudo kill -9 `sudo lsof -t -i:8000`
```That's all 🌞