Hello,
I'd like to ask for feedback on project I am working on. It's about sharing recipes over nostr.
The main project is in rust: https://codeberg.org/recipistr/recipistr . This allows creating and browsing recipes, editing user profile.
Some of the features are: recipe author's can recieve LN tips, you can filter recipes by ingredient, has POW antispam measures and has nostr comments.
I also wrote a simple web client to browse the recipes: https://recipistr.codeberg.page/
If you have any feedback please let me know below.
Thank you
Nice. What nostr event type are recipes using?
reply
Thanks. I created a new event type 8000, just to have recipe data, it looks like this
{ "title": "Coconut pralines", "notes": "...", "ingredients": [ { "amount": 200, "unit": "g", "kind": "coconut flakes" }, // ... ], "steps": [ "Melt the coconut oil", // ... ], "duration_mins": 45 }
reply
Did you need to create a NIP for type 8000 or it's not reserved?
reply
I didn't create a NIP, just those two clients which are inter-operable.
reply
This is a great new nostr app! Did you consider using some single-letter tags to improve search-ability? I'd like to search by ingredients at least, and maybe vegan etc (those could be 't' tags).
reply
Thanks, it's a good idea. I will look into it.
reply
reply