git clone https://github.com/harunguter/todo-app.git
cd todo-app
docker compose up -d --build| Frontend | API |
|---|---|
http://localhost |
http://localhost/api |
GET /todoGET /todo/:id| Parameter | Type |
|---|---|
id |
string |
POST /todo{
"content": "string"
}PUT /todo/:id{
"content": "string"
}| Parameter | Type |
|---|---|
id |
string |
DELETE /todo/:id| Parameter | Type |
|---|---|
id |
string |
| Layer | Technology | Purpose |
|---|---|---|
| Server | Nginx | Reverse proxy and static hosting |
| Frontend | React | User interface |
| Backend | ASP.NET Core | REST API |
| Database | MongoDB | Data storage |
