This is a simple TODO application created as part of the Udemy course【Go入門】Golang基礎入門 + 各種ライブラリ + 簡単なTodoWebアプリケーション開発(Go言語). For more details, please refer to the course page.
- Add, view, and delete tasks
- Login functionality
- Uses standard Go libraries
-
Clone the repository:
git clone https://github.com/kkato/todo_app.git cd todo_app
-
Install dependencies:
go mod tidy
-
Run the application:
go run main.go
-
Access the following URL in your browser:
http://localhost:8080
- net/http: Used to create the web server
- Other standard Go libraries