This github link dosent work. I have errors when tryng to make migrations. It would be bigh help for learning when you publish source code same time as video for this section.. Then is easier to find fault .. learn and analyze what went wrong.
We’ll be using useContext to serve our components information globally when needed (like if user is authenticated or not). However no global state management like Redux as I wanted to keep this tutorial React & Django specific.
This github link dosent work. I have errors when tryng to make migrations. It would be bigh help for learning when you publish source code same time as video for this section.. Then is easier to find fault .. learn and analyze what went wrong.
Nice project bro❤
Did you also deploy it on the web?
Thanks brother - yes & will be showing how to deploy the project in the last video of the series (coming soon)
Great video. For some reason, axios is able to fetch data from locahost:3000 but not 127.0.0.1:3000. any ideas on why this could be so
@@ogunleyejoseph5682 Thanks! I believe you need to add 127.0.0.1:3000 to your CORS_ALLOWED_ORIGINS array in settings.py.
Hello, Would you share the rest of the project?
@@BMoogle releasing the videos daily, secure authentication system video coming out today!
Sorry I've been unwell the last few days - will be releasing the next few videos over the next few days. Thanks for your patience!
@ It’s okay, i’m waiting ahaha Get well soon Boss xd
is there no github for the project pls bro
I'll create a repo for it! I'll upload the project we are working on together and push changes after each video so it will update as we go along.
Hi are also using Redux or global state management
We’ll be using useContext to serve our components information globally when needed (like if user is authenticated or not). However no global state management like Redux as I wanted to keep this tutorial React & Django specific.
@@MattMakesCode understood 👍
axios not fetching data from api
what is your error?
my endpoint api:
const Base_Url = '127.0.0.1:8000/api/';
const api = axios.create({
baseURL: Base_Url ,
withCredentials:true
});
export const get_user_profile_data = async(username) =>{
const response = await api.get(`user_data/${username}`);
return response.data;
}
That code looks fine, does your terminal in your frontend or backend say an error?
@@MattMakesCode please help me to get it resolved
@@MattMakesCode getting error for frontend