Simple Todo List API with Node and Sequelize.
To use this application you must have MySQL and Yarn installed in your machine.
To download all dependencies, go to the project root directory and execute in your terminal:
yarn
CREATE DATABASE todo_node_sequelize;
To create the tables, go to the project root directory and execute in your terminal:
yarn sequelize db:migrate
Create a .env file in the project root directory and change the values according to your MySQL configurations:
DB_HOST=localhost
DB_USER=username
DB_PASS=password
DB_DATABASE=todo_node_sequelize
To run the application, go to the project root directory and execute in your terminal:
yarn dev