PingPonChat-Server is a backend of PingPongChat project using Node.js
- Support
- Building
- Release
- API Documentation
- Current Project Team Members
- Contributing to PingPongChat-Server
GitHub issues are for tracking enhancements and bugs, not general support.
The open source license grants you the freedom to use PingPonChat-Server. It does not guarantee commitments of other people's time. Please be respectful and manage your expectations.
- Current: Under active development. Code for the Current release is in the dev branch.
- LTS: Newly stable version will be updated at master branch.
Prerequisite.
- Node.js
- NPM (or yarn)
- Mysql
Clone project source.
$ git clone [email protected]:Lyceum519/PingPongChat-Server.git
Install package in root directory of project.
$ yarn install
Before start server you should *configure your database
Start server (default running port is 7001)
$ yarn start
This project Use Mysql for database. Mysql version 5.x or 8.x recommended.
set database config with your local setting in database.js.
local: {
host: 'localhost',
user: 'root',
password: 'Pingpong1!!',
port: 3306,
database: 'ping_pong_chat'
},
after setting database configurattion. you can sync your database using sequelize that we provide to set default tables.
$ yarn sequelize:sync
then you can see default synced data in your database 'ping-pong-chat'
Documentation will be given in later.
UnoRich ([email protected]) Alsdn733 ([email protected])
Be free for making a issue or make pull request.