Market Data Service is a high-performance financial data API that provides comprehensive Symbol prices of different markets through both RESTful endpoints and real-time WebSocket connections.
// Script to sync Sequelize models before running migrations const { sequelize } = require('../src/models'); sequelize.sync({ alter: true, force: false }) .then(() => { console.log('Database models synced successfully.'); process.exit(0); }) .catch((error) => { console.error('Error syncing models:', error); process.exit(1); });