Postgres + Express + Sequelize Example

This repository demonstrates the usage of Sequelize within an Express and PostgreSQL application. The implemented logic is a simple Todo.

Starting App

npm install
createdb todos-dev
sequelize db:migrate
npm start:dev

Just open http://localhost:8000.