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.
- Host: GitHub
- URL: https://github.com/h1dd3nsn1p3r/nestjs-todo
- Owner: h1dd3nsn1p3r
- License: mit
- Created: 2025-03-11T16:48:29.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-13T11:29:05.000Z (3 months ago)
- Last Synced: 2025-03-13T12:31:32.882Z (3 months ago)
- Topics: nestjs, nodejs, rest-api, sqlite, sqlite3, todoapp
- Language: TypeScript
- Homepage:
- Size: 103 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```