Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 629 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 629 Bytes

WEA - todo app

Technologie

  • server-side rendering HTML šablon, reaktivní frontend na bázi AJAXU a REST komunikace
    • backend: Python, Flask
    • frontend: HTMX

Struktura DB

  • model Task
    • int id (auto-increment, primary key)
    • int user_id (foreign key)
    • string title
    • string content
    • boolean is_completed
    • datetime created_at
    • datetime updated_at
  • model User
    • int id (auto-increment, primary key)
    • string username
    • string password (zahashované)
    • boolean has_private_profile
    • datetime created_at
    • datetime updated_at