Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 496 Bytes

README.md

File metadata and controls

18 lines (17 loc) · 496 Bytes

My Application

An application for exchanging messages between users. To store information about users and messages, the PostgreSQL database is used.

Install and start

npm install
npm start

You also need to configure the ORM Sequelize in the sequelize.js file and you need to run the PostgreSQL database.

  const sequelize = new Sequelize('database', 'username', 'password', {
    dialect: 'postgres',
    host: 'localhost',
    port: 5432
  });