Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richardnguyen99/todo
Yet Another _TODO_ App
https://github.com/richardnguyen99/todo
Last synced: about 16 hours ago
JSON representation
Yet Another _TODO_ App
- Host: GitHub
- URL: https://github.com/richardnguyen99/todo
- Owner: richardnguyen99
- License: mit
- Created: 2023-08-24T19:59:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-10T17:56:25.000Z (about 1 year ago)
- Last Synced: 2023-09-10T18:41:46.123Z (about 1 year ago)
- Language: TypeScript
- Size: 963 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TODO Application
Yet Another _TODO_ App
## Project Structure
The project is an attempt to learn microservices architecture. Thus, the core
components are divided into separate services. The project structure is as below:```bash
.
├── tasks # Tasks API service
├── app # Web app
├── auth # Authentication API server
├── gateway # API gateway
├── .editorconfig
├── .gitignore
├── LICENSE
└── README.md
```### 1. Web app
The top-level directory `app` contains the main web application for the project.
### 2. Todo API
The top-level directory `api` contains the endpoints for Todo API.
### 3. Authentication
The top-level directory `auth` contains the implementation and functionality for
authentication.### 4. API Gateway
The top-level directory `gateway` contains the standardized API gateway for
routing client requests to the appropriate service.