{"id":31551491,"url":"https://github.com/muradisazade777/task-tracker-api","last_synced_at":"2025-10-04T18:56:58.167Z","repository":{"id":314605175,"uuid":"1056138210","full_name":"MuradIsazade777/Task-Tracker-API","owner":"MuradIsazade777","description":"Task Tracker API — A lightweight and container-based task management system built with Go (Gin), PostgreSQL, and Docker. It provides a fully functional full-stack framework with a RESTful API and a Vite frontend. Ideal for local development, testing, and scaling.","archived":false,"fork":false,"pushed_at":"2025-09-13T13:44:45.000Z","size":26,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-13T15:39:25.142Z","etag":null,"topics":["api","backend","database","docker","frontend","go","golang","html","javascript","nextjs","react","server","typescript"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MuradIsazade777.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-13T13:19:32.000Z","updated_at":"2025-09-13T15:31:07.000Z","dependencies_parsed_at":"2025-09-13T15:39:28.777Z","dependency_job_id":"68c7cd41-5dc3-4a69-b1b9-6b7bded1af20","html_url":"https://github.com/MuradIsazade777/Task-Tracker-API","commit_stats":null,"previous_names":["muradisazade777/task-tracker-api"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/MuradIsazade777/Task-Tracker-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FTask-Tracker-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FTask-Tracker-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FTask-Tracker-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FTask-Tracker-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MuradIsazade777","download_url":"https://codeload.github.com/MuradIsazade777/Task-Tracker-API/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuradIsazade777%2FTask-Tracker-API/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278358487,"owners_count":25973949,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","backend","database","docker","frontend","go","golang","html","javascript","nextjs","react","server","typescript"],"created_at":"2025-10-04T18:56:56.899Z","updated_at":"2025-10-04T18:56:58.106Z","avatar_url":"https://github.com/MuradIsazade777.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📝 Task Tracker API\n\nA lightweight, containerized task management system built with **Go (Gin)**, **PostgreSQL**, and **Vite + Nginx**. Designed for fast development, reproducibility, and future scalability — ideal for learning Docker, backend API design, and full-stack orchestration.\n---\n\n## 🚀 Features\n\n- RESTful API with `GET` and `POST` endpoints\n- PostgreSQL database with auto-init via `init.sql`\n- Frontend served via Nginx (Vite build)\n- Docker Compose orchestration\n- Clean separation of concerns: `models`, `handlers`, `db`\n- Environment-based configuration via `.env`\n---\n\n## 🧱 Tech Stack\n\n| Layer      | Technology         |\n|------------|--------------------|\n| Backend    | Go + Gin           |\n| Database   | PostgreSQL         |\n| Frontend   | Vite + Nginx       |\n| DevOps     | Docker Compose     |\n\n---\n\n## 📦 Setup Instructions\n\n### 1. Clone the repo\n\n```bash\ngit clone https://github.com/your-username/task-tracker-api.git\ncd task-tracker-api\n\n1. Create .env file\nenv\nPOSTGRES_USER=postgres\nPOSTGRES_PASSWORD=postgres\nPOSTGRES_DB=tasks\nDB_URL=postgres://postgres:postgres@db:5432/tasks?sslmode=disable\n\n2. Run the app\ndocker compose up --build\n\n3. Access the app\nFrontend: http://localhost:3000\nBackend API: http://localhost:8080/tasks\n\n📮 API Endpoints\nGET /tasks\nReturns all tasks.\n\njson\n[\n  {\n    \"id\": 1,\n    \"title\": \"Learn Docker\",\n    \"completed\": false\n  }\n]\nPOST /tasks\nCreates a new task.\n\nbash\ncurl -X POST http://localhost:8080/tasks \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"title\": \"New Task\", \"completed\": false}'\n\n🛠 Project Structure\nCode\ntask-tracker-api/\n├── backend/\n│   ├── db/\n│   ├── handlers/\n│   ├── models/\n│   └── main.go\n├── frontend/\n│   └── (Vite project)\n├── db/\n│   └── init.sql\n├── .env\n├── docker-compose.yml\n└── README.md\n\n📄 License\nThis project is licensed under the MIT License. See LICENSE for details.\n\n🌟 Author\nMurad — building scalable, reproducible, and impactful platforms. Follow my journey on GitHub: github.com/MuradIsazade777\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuradisazade777%2Ftask-tracker-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuradisazade777%2Ftask-tracker-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuradisazade777%2Ftask-tracker-api/lists"}