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 /api/todo
GET /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 |
Server: Nginx
Frontend: React
Database: MongoDB
Backend: ASP.NET Core