You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you have any interest in building a demo app to show off all the features of express-user-manager? I gave it a shot this weekend and couldn't get past how though req.session.user is set in the login handler, that user data isn't available when I make the next call, in the loggedIn and authorized middleware.
Here is my repo if seeing it would help. I'm just using httpie to make the requests for now.
Any help would be appreciated. Thanks for such a handy tool.
The text was updated successfully, but these errors were encountered:
I have taken a look at your code. Everything looks okay, with just one exception. The codebase is missing a .env file. What you have instead is an ENV file with export-ed values. What you need, however, is a .env file. pronounced dotenv. You also have to remove the export keywords in front of the environment variables defined inside the file. Here's an example of (the contents of) such a file:
Do you have any interest in building a demo app to show off all the features of express-user-manager? I gave it a shot this weekend and couldn't get past how though req.session.user is set in the login handler, that user data isn't available when I make the next call, in the loggedIn and authorized middleware.
Here is my repo if seeing it would help. I'm just using httpie to make the requests for now.
Any help would be appreciated. Thanks for such a handy tool.
The text was updated successfully, but these errors were encountered: