Skip to content

Trace the origin of unique identifiers

License

Notifications You must be signed in to change notification settings

gregorybchris/idtrace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

idtrace

Trace the origin of unique identifiers


About

idtrace is a microservice used to track the origin of unique IDs. For example, if you wanted to implement a "share" button in your social media app, you'd probably generate a link containing the unique ID of a post. With idtrace, you can generate a new link based on the post ID and the ID of the user generating the shareable link. When someone opens a shareable link, idtrace can query its database to determine both the original post ID and the sender of the link.

Installation

Install using Poetry

poetry install

Local development

fastapi dev idtrace/app/app.py

API reference

Open http://0.0.0.0:8000/docs after starting up the dev server.

Frontend example

cd example
pnpm dev