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
- Host: GitHub
- URL: https://github.com/sangampshinde/todo-app
- Owner: sangampshinde
- Created: 2025-06-15T14:57:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-15T15:30:56.000Z (about 1 year ago)
- Last Synced: 2025-06-15T16:37:46.917Z (about 1 year ago)
- Topics: api, javascript, nestjs, nextjs14, postgresql, sql, tailwind-css, typeorm, typescript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```