10000 GitHub - clemensrh/htmx-go: A Todo App made with HTMX and the power of Golang.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

clemensrh/htmx-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A simple Todo app in GO

Why?

I wanted to start with Golang and test out htmx. And I thought to myself:

Why not combine both?

That's what I did!

Getting started

Creating the database

mkdir database
sqlite3 database/todo.db "CREATE TABLE todos (id INTEGER PRIMARY KEY AUTOINCREMENT, title TEXT, description TEXT, done BOOLEAN);"

Running

go run main.go

What's next?

Check out the branche update to see how I implemented these features.

  • Edit tasks: Allow users to edit the title and description of existing tasks.
  • Search Functionality: Add a search bar to filter tasks by title or description.
  • Categories or Tags: Add the ability to categorize or tag tasks, and filter tasks by category or tag.
  • Export/Import Tasks: Allow users to export their tasks to a file and import tasks from a file.

About

A Todo App made with HTMX and the power of Golang.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0