Пікірлер
@kiddie-7287
@kiddie-7287 4 күн бұрын
WTF FFONT
@EdwibaPujianto
@EdwibaPujianto 4 күн бұрын
oh god. danke bro🎉
@ljlinen
@ljlinen 14 күн бұрын
I'm sorry i don't see anything and ma vid quality is at HD
@adityapandey23
@adityapandey23 15 күн бұрын
This is really helpful! Thanks
@unixrebel
@unixrebel 16 күн бұрын
25% larger text. its kinda crazy you didnt notice that before uploading.
@windl02
@windl02 Ай бұрын
manythanks! but can you make 'index' have Authorization header automatically after successfull login, I still haven't found a solution :< (sorry for my bad English)
@EsHbAnBaHaDuR
@EsHbAnBaHaDuR Ай бұрын
very nice. My routes are in /Routes/courseRoutes.js file so how can i access them?
@lauteesien7260
@lauteesien7260 Ай бұрын
Why do you use setMap(map) for onLoad in <GoogleMap> component, but use input.current=ref for onLoad <StandaloneSearchBox> component?
@RajeshTechForge
@RajeshTechForge 2 ай бұрын
Good Tutoriall but too annoying to see the code. 1. Just zoom In the editor, 2. Add a soft bg music.
@thedevcorners
@thedevcorners 2 ай бұрын
Appreciate it man!
@sanketmane5838
@sanketmane5838 2 ай бұрын
netlify-lamda has already been deprecated. How to do it without netlity-lamda ?
@nahrulk
@nahrulk 2 ай бұрын
i got google not defined. do you know why?
@thedevcorners
@thedevcorners 2 ай бұрын
This might be help you: stackoverflow.com/questions/69676563/react-google-maps-api-referenceerror-google-is-not-defined
@luckyplaya84x
@luckyplaya84x 3 ай бұрын
Zoom ur screen next time
@muratyonev6000
@muratyonev6000 3 ай бұрын
It does not work. waste of time
@thedevcorners
@thedevcorners 3 ай бұрын
Thank you :) at least it works for me.
@qazyhn94
@qazyhn94 3 ай бұрын
what? you are checking that token in Berear header equals to value in cookie? why? shouldn't you call verify method to see whats inside, only if you can open it (so verify) you guarantee token is signed correct and issued by you... otherwise i can put any troll value in my cookie and header and get into your system
@thedevcorners
@thedevcorners 3 ай бұрын
It's just example bud. Here is the practical way for that case: app.use( "/index/*", bearerAuth({ verifyToken: async (token, c) => { try { const decoded = jwt.verify(token, process.env.SECRET || ""); return !!decoded; } catch (err) { return false; } }, }) );
@mywebsite
@mywebsite 3 ай бұрын
Increase the font size...then re-upload it please
@thedevcorners
@thedevcorners 3 ай бұрын
Noted!
@kadirbozkurt2412
@kadirbozkurt2412 3 ай бұрын
I build my react/node project. If I choose my dist directory as publish directory while deploying, it doesnt call the functions on front end. If I don't choose directory for publish, I see 404 error of netlify. Any solution for that?
@RishiKumar-ex8nl
@RishiKumar-ex8nl 3 ай бұрын
I tried this, but the map is not showing, only the search bar is there
@thedevcorners
@thedevcorners 3 ай бұрын
Make sure API key is activated
@MarlonEnglemam
@MarlonEnglemam 3 ай бұрын
nice video but please make the font size larger, hard to follow along...
@thedevcorners
@thedevcorners 3 ай бұрын
alright. Next time!
@creativehome9462
@creativehome9462 4 ай бұрын
is this free?
@thedevcorners
@thedevcorners 4 ай бұрын
Yes, it's free but you need to fill the credit cards. Hope it helps
@prashlovessamosa
@prashlovessamosa 3 ай бұрын
@@thedevcorners no its asking money 10 dollars in my country please give github link
@szymdzum
@szymdzum 4 ай бұрын
Yeah its a bit to small :) Thanks for showing Hono its getting my interest
@kingramius5089
@kingramius5089 4 ай бұрын
Good intro ! why the cookie auth doesn't work ?
@danielmayo4315
@danielmayo4315 4 ай бұрын
the video is great just zoom in a little
@thedevcorners
@thedevcorners 4 ай бұрын
Appreciate for the input!
@harshasuraweera
@harshasuraweera 4 ай бұрын
Great tutorial... By the way I have a question, is that route prefix "/.netlify/functions/" a must? PS: Found that it can be solved by adding a redirect rule to netlify.toml like this [[redirects]] force = true from = "/api/*" status = 200 to = "/.netlify/functions/api/:splat"
@thedevcorners
@thedevcorners 4 ай бұрын
Yes, it's a must! Thanks for the addition!
@harshasuraweera
@harshasuraweera 4 ай бұрын
@@thedevcorners np.. seems above rule can only be used with express apps.
@girish_bora0
@girish_bora0 Ай бұрын
@@thedevcorners Is there a way to deploy from github?
@Bollyspeedup
@Bollyspeedup 4 ай бұрын
I have actually already made the project in github so can you help me with that
@thedevcorners
@thedevcorners 4 ай бұрын
Glad to hear that! have you followed the instruction in the video?
@Bollyspeedup
@Bollyspeedup 4 ай бұрын
@@thedevcorners I already have made the repo and project before
@EdwibaPujianto
@EdwibaPujianto 4 ай бұрын
Dude, That very helpful!
@juanpasten6077
@juanpasten6077 4 ай бұрын
It doesnt' work for me but thanks!
@thedevcorners
@thedevcorners 4 ай бұрын
Can you give the details why it didn't work?
@juanpasten6077
@juanpasten6077 4 ай бұрын
@@thedevcorners My men! It ended working!! Two things: my gratitude to you for you willing to help. With that I was going to make a good explanation to get help by you and, in the process, I fix it. Now I was trying to make a good explanation on why it was break and I get with this: ▬ If you use a template string plus some variables, it would not work. I had something like this « const ROUTES = { MOVIES: `movies`, HOME: `/` } app.get(`/.netlify/functions/app/${ROUTES.MOVIES}/:id`, fn) » That's going to throw an error. This is how I fix that: « const PREFIX_ROUTES = "/.netlify/functions/app" const ROUTES = { MOVIES: `${PREFIX_ROUTES}/movies`, HOME: `${PREFIX_ROUTES}/` } app.get(ROUTES.HOME, fn) app.get(`${ROUTES.MOVIES}`, fn) app.get(`${ROUTES.MOVIES}/:id`, fn) » Thanks for all =)!
@juanpasten6077
@juanpasten6077 4 ай бұрын
@@thedevcorners I though I made a reply but it was not the case. The problem was the use of template strings, I had something like this: `/.netlify/functions/app/${ROUTES.MOVIES}/:id`. That doesn't work for I don't know which reason. But if I extract the prefix into other variable it ended working. Like this: «const ROUTES_PREFIX = "/.netlify/functions/app"; const ROUTES = {MOVIES: `${ROUTES_PREFIX}/movies`}; app.get(`${ROUTES.MOVIES}/:id`, fn)». So, thanks so much for your willing to help ♥
@kynjal23
@kynjal23 4 ай бұрын
you should zoom out the video , this is very bad content
@thedevcorners
@thedevcorners 4 ай бұрын
Thanks for the input, we will make it better in upcoming videos!
@preetjariwala9300
@preetjariwala9300 4 ай бұрын
You should zoom your text a bit before recording; don't you think so?
@thedevcorners
@thedevcorners 4 ай бұрын
Yes, I just realized it. Thanks for your input :)
@ShikimoriKuruma
@ShikimoriKuruma 5 ай бұрын
wow thanks bro
@pshycocoder
@pshycocoder 6 ай бұрын
New subscriber here
@thedevcorners
@thedevcorners 5 ай бұрын
Thanks!
@214GNR
@214GNR 7 ай бұрын
Solid! Worked... I deployed a basic api through Heroku and couldn't connect to my MongoDB cluster database. This solved it
@thedevcorners
@thedevcorners 5 ай бұрын
Thanks for watching!
@aaryanchouksey2377
@aaryanchouksey2377 7 ай бұрын
Hi Arif! Thank you so much for the tutorial. It worked really great for me! I had a request, can you share some details on how can I delete the uploaded file through an api?
@aaryanchouksey2377
@aaryanchouksey2377 7 ай бұрын
never mind, read the docs and implemented it myself
@vocaturza9432
@vocaturza9432 8 ай бұрын
wow verry help me bro
@alejandrocamacho7739
@alejandrocamacho7739 9 ай бұрын
Incredibly useful! Thx a lot ❤❤
@thedevcorners
@thedevcorners 8 ай бұрын
Glad it was helpful!
@boazamakyeadjei8269
@boazamakyeadjei8269 9 ай бұрын
No usefull
@mdasadalihaidar1920
@mdasadalihaidar1920 10 ай бұрын
hey can you make a video for deploying spring boot application on deta space which has mysql database connected to it
@NitishKumar-hw3nr
@NitishKumar-hw3nr 11 ай бұрын
GitHub link please
@marccawood
@marccawood 11 ай бұрын
Unfortunately it’s no longer possible to enable developer mode for new sign ups 😮
@randywahidin
@randywahidin 10 ай бұрын
Same
@skshahid5565
@skshahid5565 6 ай бұрын
Same for me . They say for developer mode ,answer a survey but still no access.
@dungdv203
@dungdv203 Жыл бұрын
Extremely helpful and quick
@thedevcorners
@thedevcorners Жыл бұрын
Thank you 😊
@LovingLego
@LovingLego Жыл бұрын
6:53 can we publish our project to public without install canvas?
@thedevcorners
@thedevcorners Жыл бұрын
As far as I know, you should install the canvas in order to publish to public.
@LovingLego
@LovingLego Жыл бұрын
@@thedevcorners thanks for the quick reply, I'm looking for heroku alternative
@olodobf
@olodobf Жыл бұрын
How can I add environment variables
@thedevcorners
@thedevcorners Жыл бұрын
For current version, I think it's different. You could read the documentation here deta.space/docs/en/build/fundamentals/the-space-runtime/configuration/
@adomako5863
@adomako5863 Жыл бұрын
May you make a video on how to use the same login app for Collections that is predefined? I'm using linux.
@thedevcorners
@thedevcorners Жыл бұрын
Yes, I would love to make it someday!