Skip to content

Latest commit

 

History

History
28 lines (28 loc) · 546 Bytes

README.md

File metadata and controls

28 lines (28 loc) · 546 Bytes

Bridge Evaluation Platform Server

Install

Start

  • git clone
  • Install
cd bridge-backend
npm install
  • Set DB
// db/pool.js
const pool = mysql.createPool({
  host: 'localhost',
  user: 'root',
  password: 'mariadb',
  database: 'xchain',
  connectionLimit: 20
})
  • Create Tables with sql/create_table.sql
  • Run
npm start