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

https://github.com/sangampshinde/todo-app


https://github.com/sangampshinde/todo-app

api javascript nestjs nextjs14 postgresql sql tailwind-css typeorm typescript

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# COMPLETE PROJECT STRECTURE
```
todo-app/
├── backend/
├── frontend/
├── docker-compose.yml
└── README.md

```

# Backend (NestJS)

```
backend/
├── src/
│ ├── auth/ # Authentication module
│ ├── common/ # Shared utilities, filters, interceptors
│ ├── config/ # Configuration files
│ ├── mail/ # Email templates and services
│ ├── notifications/ # Notification system
│ ├── tasks/ # Todo tasks module
│ ├── users/ # User management
│ ├── app.module.ts # Root module
│ └── main.ts # Application entry point
├── test/ # Test files
├── .env # Environment variables
├── nest-cli.json
├── package.json
└── tsconfig.json

```