- express
- bcrypt
- body-parser
- cors
- dotenv
- jsonwebtoken
- moment
- mysql2
- sequelize
- nodemon (for only development)
- Clone this repository
- Open with your text editor
- Run npm install
- Create database
- Rename env.example to .env
- Change config .env
# Config Database
DB_NAME="YourDatabaseName"
DB_USER="YourDatabaseUser"
DB_PASSWORD="YourDatabasePassword"
# Config JsonWebToken
JWT_KEY="YourJWTSecretKey"
- Run apps use npm start
- Done