/bridge-backend

Bridge Information Platform Backend

Primary LanguageJavaScript

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