A todo app using NodeJS, Express and Sequalize written in Typescript
npm install
yarn
The build is done with a Gulp and this task can be started with
yarn build
Typescript is transpiled to Javascript in the /dist directory.
This project uses a PostgreSQL database. In the databaseconfig/config.json file the schema and the credentials can be set. This file can be generated from the config.json.example file in the repo. The migrations are written in Javascript and can be found in the migrations folder. Run sequelize db:migrate to migrate your database schema.
yarn start
The web server is exposed at http://localhost:3000