Skip to content

samlabd6/Personal-Knowledge-Notes-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Concept Build a REST API that lets users store, tag, search, and manage notes or knowledge entries (like a lightweight personal wiki or PKM backend). This is realistic, simple, and covers all core REST operations.

ERD

erDiagram
    USERS {
        int id PK
        string username "unique, not null"
        string email "unique"
        string password_hash "not null"
        datetime created_at
    }

    NOTES {
        int id PK
        int user_id FK
        string title "not null"
        text context
        datetime created_at
        datetime updated_at
        boolean is_archived
    }

    USERS ||--o{ NOTES : "has"
Loading

About

Concept Build a REST API that lets users store, tag, search, and manage notes or knowledge entries (like a lightweight personal wiki or PKM backend). This is realistic, simple, and covers all core REST operations.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages