Taskify is a beginner-friendly project aimed at providing a platform for GoLang enthusiasts to test and improve their skills. It's a simple task manager application developed entirely in Go, offering a hands-on experience for beginners to dive into GoLang development.
Taskify is designed to be a simple yet functional task manager application. It allows users to add, list, update, and remove tasks from their list. The project is structured in a beginner-friendly manner, making it easy for those new to GoLang to understand and contribute.
To get started with Taskify, follow these simple steps:
Ensure you have Go installed on your system. If not, you can download and install it from the official GoLang website.
Clone this repository to your local machine:
git clone https://github.com/KarlMathuthu/taskify-go.gitNavigate to the project directory:
cd TaskifyBuild the project:
go buildRun the executable:
./TaskifyOnce the application is running, you can interact with it using the following endpoints:
add: Add a new task to the list.list: List all tasks.update: Update an existing task.remove: Remove a task from the list.Example usage:
GET http://localhost:8080/tasks/POST http://localhost:8080/tasks/PUT http://localhost:8080/tasks/:idDELETE http://localhost:8080/tasks/:idContributions to Taskify are welcome! Whether you're a beginner looking to improve your GoLang skills or an experienced developer wanting to support beginners, there are many ways to contribute:
To contribute, fork this repository, make your changes, and submit a pull request. Your contributions will be greatly appreciated!
Developed with ❤️ by Karl Kiyotaka.