A self hosted NodeJS chat server that is compatible with the v-chat-client desktop application. It uses a MySQL database and Socket.io for the realtime communication with the clients.
The development configuration file is located in
It contains the database configuration and other application parameters.
Configure the database parameters, CDN url, application port... and then run the following commands:
Install the dependencies
npm install
Create the database tables in production mode
npm run sync-models
Create the database tables and inserts seed data in development mode
npm run sync-models-dev
npm run start-dev
npm run start
npm run lint