Is rustus supposed to be exposed to the world or proxied by a "domain-specific" web service?
Did I understand well from this example:
|
print(f"Received: {hook_name}") |
|
if authorization != "Bearer jwt": |
|
raise HTTPException(401) |
|
return None |
That hooks could be used to authenticate file uploads?
I think it would be interesting as a narrative example to unroll a whole demo app that leverages rustus. Or give more context on why it was built?
Or for example, answer questions like "if I want to built a WeTransfer clone, what is the intended way to integrate rustus?"
If you're willing to give me a few pointers, I'd be glad to contribute something :)
Is
rustussupposed to be exposed to the world or proxied by a "domain-specific" web service?Did I understand well from this example:
rustus/docs/hooks.md
Lines 852 to 855 in 3206250
That hooks could be used to authenticate file uploads?
I think it would be interesting as a narrative example to unroll a whole demo app that leverages
rustus. Or give more context on why it was built?Or for example, answer questions like "if I want to built a WeTransfer clone, what is the intended way to integrate rustus?"
If you're willing to give me a few pointers, I'd be glad to contribute something :)