An open API service indexing awesome lists of open source software.

https://github.com/h1dd3nsn1p3r/nestjs-todo

A simple todo app in NestJS.
https://github.com/h1dd3nsn1p3r/nestjs-todo

nestjs nodejs rest-api sqlite sqlite3 todoapp

Last synced: 3 months ago
JSON representation

A simple todo app in NestJS.

Awesome Lists containing this project

README

        

# Todo App (NestJS)

A simple todo app using NestJS that uses SQLite as a database.

## Installation

Clone the repository, you can install the dependencies by running:

```bash
$ npm install
```

Once the dependencies are installed, run the seed script to create the database and seed it with some data:

```bash
$ bun ./src/data/seed.ts
```

## Running the app

To run the app, you can use the following command:

```bash
$ npm run start:dev
```