-
-
Notifications
You must be signed in to change notification settings - Fork 703
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
Chapter 3 - SaaS Boilerplate #178
Comments
Thanks @infamousricky . I'm not sure where you are at in Chapter 3, but at some point, we give the following instruction:
Let me know if the code works for you once you add those environmental variables to your |
I ran into a similar issue where I was experiencing undefined when the app runs, it would redirect to: (http://localhost:3000/undefined/login) and displayed an undefined(404) view. |
@klyburke Are you able to reproduce redirect to |
Sorry for the delay! I never noticed this problem when testing each of the book chapter codebases for Now I just tested running the main @RileyManda are you able to reproduce this issue? If so, which codebase and can you give exact steps to reproduce the issue? Thanks! |
I am currently using the Saas code base.Not the book code base.Not sure if this might be the wrong thread for my issue but these are the steps i took: 1:git clone
Installed dependencies for the api and app:yarn:
And this is what i get in the browser: Manually editing the url by removing undefined produced the following output: |
@RileyManda Thanks for the details! I will try to follow and see if I can reproduce what you see. @RileyManda I tested as you described but did not get the same output. The code runs without issue for me. (1) Make sure you have pulled the latest code from GitHub, since we pushed a major update a few weeks ago. (2) Try deleting your (3) If you still see an issue, please feel free to create a public GitHub repo with the code you are running. Then I can run exactly what you are running and see if the error comes up. Thanks again for reporting! |
Hi, programming is a cool topic, I would like to learn it too, but I don't have much time, unfortunately I can't learn programming now, because I don't have time for it, but for my project I want to use the services of https://evnedev.com/services/saas-application-development-company/ Maybe they can help me, you guys are good at it, would love to hear your thoughts |
Ran into an issue with the fetching of user-name because the API documentation references the APP_URL in the environment file but couldn't find a .env file in /3-being/app
const response = await fetch(
${process.env.URL_APP}${path}${qs}
,Object.assign({ method: 'POST', credentials: 'include' }, opts, { headers }),
);
The text was updated successfully, but these errors were encountered: