-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: actix + react + clerk example #133
Conversation
Adding a new fullstack example application to showcase the usage of Clerk in Rust(using shuttle runtime) and NextJS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some initial thoughts
clerk/backend/Cargo.toml
Outdated
actix-web = "4.4.1" | ||
clerk-rs = "0.2.3" | ||
dotenv = "0.15.0" | ||
openssl-sys = { version = "0.9.9", features = ["vendored"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this one needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On my windows machine I am having a open ssl issue so adding fixes that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The clerk lib is using reqwest with native TLS and no feature flag to enable it. We could suggest that as an improvement to the library.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was not knowing that. Great to see that coming up!!
…ing of frontend assets
Description of change
This PR adds a new example full-stack application to showcase how to use Clerk authentication services in Rust(using shuttle runtime) and Nextjs.
Feat: #1576
How has this been tested? (if applicable)
Manual