Build and Deploy a Full Stack E-Commerce App with an Admin Dashboard & CMS in 2024 | Next 14, Stripe

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ธ.ค. 2024

ความคิดเห็น • 906

  • @sukunademonking07
    @sukunademonking07 ปีที่แล้ว +39

    Hey! Can you please upload a MERN video showcasing google oauth and also 2FA? Please don't use Next.js and Typescript. Your way of teaching is really great. It would mean a lot❤I know you guys must be getting a lot of request. Please show how oauth2 is now being implemented in production. Thank you!

  • @rademilijasevic4313
    @rademilijasevic4313 11 หลายเดือนก่อน +40

    Adrian you are an amazing coder as well as presenter/teacher. Without previous typescript or React or NextJS knowledge, I was actually able to follow you in real time. This is one of the rare videos that actually work top to bottom and is excellent place to start coding. Following this video I will take Next.JS tutorial to have all this sink in and continue learning. All the tech stack used in this video is awesome, I am sold for it. I spent days searching for a good tutorial on building an ecommerce site and I hit a jackpot finding this video. I designed and built an e-store using Elementor and WP but I wanted to learn the code and start customizing. Many many thanks. Keep up your great work.

    • @kazerdira4704
      @kazerdira4704 หลายเดือนก่อน

      i really get interested in your comment , brilliant you are a genius i am not joking ! i did code for more than 3 years , (not js or css) and i can even get to the min 30 mins , good luck anyway

  • @mahtabvariyani
    @mahtabvariyani ปีที่แล้ว +28

    This guy is a savior for all those who are learning JavaScript. He is the best on TH-cam, and, most importantly, he never says 'follow me,' 'subscribe,' or 'like.' Because everyone, after seeing his talent, perfect work, and effort, which he puts into his content, will like, comment, and subscribe automatically. This guy is the best JavaScript teacher on TH-cam

    • @javascriptmastery
      @javascriptmastery  ปีที่แล้ว +4

      Thank you! It means a lot!

    • @KolaToyin-wf6vb
      @KolaToyin-wf6vb ปีที่แล้ว +2

      For real. Anytime I see a notification that he has drop a new video I'm always ready to check it out

    • @moalaoudi9411
      @moalaoudi9411 ปีที่แล้ว

      ​@@javascriptmastery Yes Good content. However, I want to see more of these full stack and MERN projects and more deployments on AWS. More projects of Full stack Applications with AWS.

    • @preciousbanigo
      @preciousbanigo 9 หลายเดือนก่อน

      ​​@@KolaToyin-wf6vb same here Bro. Amazing content everytime.

    • @rheinatamara7401
      @rheinatamara7401 วันที่ผ่านมา

      sooo true!!!

  • @volumetwoooo
    @volumetwoooo ปีที่แล้ว +19

    The amount of ultra quality this channel has been putting out is pure blessing from Adrian to all of us who keep studying this. Thank you so much, as always.

  • @vaporizor92
    @vaporizor92 ปีที่แล้ว +40

    I am up to 50:08 and having a difficult time finding the correct .scss referenced at 50:08 for the grid. Therefore, I manually wrote it up and here it is for anyone who needs it:
    .inclusions{
    display: grid;
    justify-content: center;
    gap: 30px;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    margin: 100px 0;
    @include large-break {
    grid-template-columns: repeat(2, 1fr);
    }
    @include mid-break {
    margin: 60px 0;
    }
    @include extra-small-break {
    grid-template-columns: 1fr;
    }
    }

    • @user-yc3pb1ij7g
      @user-yc3pb1ij7g ปีที่แล้ว +3

      That section of code was missing and was giving me errors. Thank you so much!!

    • @someoneyouknow2440
      @someoneyouknow2440 8 หลายเดือนก่อน

      You're a life saver, thanks!

    • @GoodbyeMrX
      @GoodbyeMrX 8 หลายเดือนก่อน +1

      Thanks. At the end there is still missing:
      .icon {
      margin-bottom: 16px;
      }

    • @akashgudigar807
      @akashgudigar807 6 หลายเดือนก่อน +1

      this code is there in the actual git hub repo, check there for the actual code. In the assets folder its missing, but in the FooterComponent index.module.scss its there

  • @Mohammadr_m
    @Mohammadr_m ปีที่แล้ว +60

    Thank you so much, Mr. Adrian! I'm a developer who'sbeen stuck with wordpress for ages. Ive been looking to transition to Next.js but time was always an issue. This video is exactly what I needed to make this shift happen. Really thankful for this! 🙏🏻

    • @javascriptmastery
      @javascriptmastery  ปีที่แล้ว +8

      That's amazing, enjoy it!

    • @AzizbekMamatqulov-kf8ld
      @AzizbekMamatqulov-kf8ld 11 หลายเดือนก่อน

      maybe I should change environment variables ??? I tried but not helped

  • @dreamerz95
    @dreamerz95 ปีที่แล้ว +86

    Dude you're killing it when it comes to react and next. How are you rolling out things so fast with such an amazing quality.

    • @nomen385
      @nomen385 ปีที่แล้ว +12

      He's an alien

    • @guitarhero69
      @guitarhero69 ปีที่แล้ว +15

      bro has a separate team working on new projects. and then he presents them in a video

    • @dreamerz95
      @dreamerz95 ปีที่แล้ว +1

      @@guitarhero69 makes sense

    • @javascriptmastery
      @javascriptmastery  ปีที่แล้ว +13

      Thank you so much! ♥️

    • @DS-AIArvinkritik
      @DS-AIArvinkritik ปีที่แล้ว

      ​@@javascriptmasterybro make us a devoloper with angular and vue also !!!

  • @RoadTrip-and-Music
    @RoadTrip-and-Music ปีที่แล้ว +25

    In case someone face errors when deploying this nice project I can share my trick which helped me deploy it finally )) maybe it's not good way, but my goal was to deploy it in anyway! )) some rows should be added in .eslintrc js file... plugins: ['prettier'], rules: {'prettier/prettier': 0} to avoid a lot of prettier errors during building logs and also need install 'simple-import-sort' plugin and add few rows to the same .eslintrc js file... plugins: ['simple-import-sort'], rules: { 'simple-import-sort/imports: error} to avoid a lot of errors with saying to run autofix to sort imports... Somehow it helps! Ha ha! ;)

    • @RoadTrip-and-Music
      @RoadTrip-and-Music ปีที่แล้ว +1

      That was funny )) --- ESLint: Cannot read config file: /workspace/.eslintrc.js Error: error is not defined --- the trick was not in that rows should be added, but in that way that it couldn't be read and just passed through, so no errors anymore and build was done! :D

  • @bigjoe100
    @bigjoe100 ปีที่แล้ว +30

    This guy is just killing it ever since I found your channel I have fallen in love with Front-end development. Just started the social media App with Tailwind and Appwrite project and I must say it is fantastic.Thanks, Adrian for bringing real web development to us.

  • @GoodbyeMrX
    @GoodbyeMrX 8 หลายเดือนก่อน +2

    By far the best channel for coding.
    Very good explanation, I learned alot. Coding is on point. Great mic, voice of an angel.
    Ty for this great tutorial!

  • @kazi7935
    @kazi7935 7 หลายเดือนก่อน +5

    This is the best video on e-commerce project I’ve ever seen on TH-cam. I was able to start and finish it without any complications. Thank you so much Adrian.

    • @Eli12898
      @Eli12898 6 หลายเดือนก่อน +1

      Hi, do you mind telling me how did you handle payload setup? I can't continue because it's not free for a while now

  • @BhuvaneshM
    @BhuvaneshM ปีที่แล้ว +21

    We all accept that the quality is extremely good but in most of the videos you are building FRONT-END based projects. In this video you are using a CMS to handle back-end.
    All we want is a REAL FULL STACK project with Backend code. Like a MERN STACK PROJECT 🔥🔥🔥🔥🔥

    • @cold_mi-gente
      @cold_mi-gente 5 หลายเดือนก่อน +1

      Getting engaged towards his NextJS course

  • @adrianmaull1242
    @adrianmaull1242 ปีที่แล้ว +5

    Excellent course. It would be nice to see how to include shipping details in the Cart/Checkout process.

  • @thedonner7746
    @thedonner7746 ปีที่แล้ว +5

    OOh im so excited for this one! i recently found your old e-commerce tutorial and the old versions of everything made it deprecated, i was so sad, time to work again!

  • @HannanShah-el5cr
    @HannanShah-el5cr 10 หลายเดือนก่อน +1

    I never comment on videos, but I must say you are a talented teacher. I wish you all the best with your channel!

  • @ayushgupta-ui3og
    @ayushgupta-ui3og 7 หลายเดือนก่อน +42

    TUTORIAL ON HOW TO SELF HOST PAYLOAD CMS CODE

    • @eternl_sunshine22
      @eternl_sunshine22 7 หลายเดือนก่อน +2

      I assume you can do this on Fly IO

    • @zakariadamu9345
      @zakariadamu9345 5 หลายเดือนก่อน

      @@eternl_sunshine22 please is using a CMS the better way of going about a project's backend, rather than using node or python??

    • @Pizzaboi87
      @Pizzaboi87 หลายเดือนก่อน

      Did you find any working solution?

  • @yousufhossain9768
    @yousufhossain9768 ปีที่แล้ว +3

    When i get a job im gonna surely buy all of courses you provided .. thank you Adrian for teaching us the best quality content about Web development. You teaching us prod quality project that can actually increase the value of resume.

  • @josecentenodev
    @josecentenodev ปีที่แล้ว +10

    Wow, I'm really impressed by how you handle debugging on the fly as you code! It's amazing to see your problem-solving skills in action. Your ability to troubleshoot and fix issues on the spot is truly inspiring. Keep up the great work!

  • @anidkhan6796
    @anidkhan6796 11 หลายเดือนก่อน +5

    Damn this must be the most functional and best e-commerce next js project available on TH-cam.

    • @bestthegamer07
      @bestthegamer07 9 หลายเดือนก่อน

      yeah bro

    • @MohamedAdel.9
      @MohamedAdel.9 2 หลายเดือนก่อน

      Can I deploy this project and make it a live demo in my portfolio

  • @codemantis5986
    @codemantis5986 ปีที่แล้ว +3

    Was on the lookout to start my own e-commerce store, this came just in time!

    • @ahmadsohail_yt
      @ahmadsohail_yt 4 หลายเดือนก่อน

      same

    • @MohamedAdel.9
      @MohamedAdel.9 2 หลายเดือนก่อน

      Can I deploy this project and make it a live demo in my portfolio

  • @nullpointer7809
    @nullpointer7809 10 หลายเดือนก่อน +1

    Somebody give this man an Oscar. Or whatever is equivalent for a web developer!

  • @viallymboma9874
    @viallymboma9874 ปีที่แล้ว +3

    Damn...the speed at which you do this is just mind-blowing... you're a power dynamic to this js generation 🎉

  • @Andrew-Tsegaye
    @Andrew-Tsegaye 2 หลายเดือนก่อน +2

    I can't love this project! Bro, you're ..... I'm speechless thank you so much!

  • @WiLDeveD
    @WiLDeveD ปีที่แล้ว +4

    You are the Best bro by far in Full Stack App Tutorials in TH-cam. Thanks and God speed ❤

    • @javascriptmastery
      @javascriptmastery  ปีที่แล้ว +1

      You're welcome! ❤

    • @MohamedAdel.9
      @MohamedAdel.9 2 หลายเดือนก่อน

      Can I deploy this project and make it a live demo in my portfolio

  • @miloshayk1724
    @miloshayk1724 9 หลายเดือนก่อน +1

    Man your the best. This guy is super crazy . No one is near him on youtube superb content

  • @Tapadar.Monsur
    @Tapadar.Monsur ปีที่แล้ว +6

    Absolutely phenomenal, Adrian! Thank you for another project video.

  • @ojongrandy2580
    @ojongrandy2580 4 หลายเดือนก่อน +1

    Long Live Andrain.
    Long Live JSM.
    JSM has everything a developer need ❤

  • @ahmeddalhalabi
    @ahmeddalhalabi ปีที่แล้ว +6

    This is what we've been waiting for
    After the excellent course on next.js14
    I think you are in this lesson
    You will expand further on next.js
    It touches on new points that have not been touched upon before
    This will make people follow your lessons
    It reaches a very advanced stage in next.js
    Thank you from my heart
    I promise you a nice surprise after a week
    My son who followed your course on next.js 14
    Near the end of the project
    But after he added a lot of wonderful things to it
    You will be surprised by it
    He is still 14 years old and we are waiting for you to translate the video into Arabic

  • @torahfelix7820
    @torahfelix7820 ปีที่แล้ว +9

    Your content is just so awesome. I just started learning js and I have already built 2 react projects and learning really good practices.
    I can't thank you enough Adrian. 😭

  • @R0VERKAI
    @R0VERKAI ปีที่แล้ว +2

    OMG, I just asked for this in another Video. Is this magic?!🤩 Thank you so much😭

  • @Faizee_Motors
    @Faizee_Motors 11 หลายเดือนก่อน +3

    Nice , i tried this.
    But can you share how to add slider filter for price range, more products photos and if want how to add another payment provider.

  • @devanshsinghparmar
    @devanshsinghparmar 11 หลายเดือนก่อน +1

    this is an amazing one, but there is one thing still missing I would love to suggest that please add Size feature in this e-commerce or reference us. It will be helpful for many of us!

  • @ProjectsMastery82
    @ProjectsMastery82 ปีที่แล้ว +2

    This is a great video Adrian 🎉 I love the CMS part 😊

  • @theuncannyepicurean
    @theuncannyepicurean 3 หลายเดือนก่อน

    I'm pretty sure I'm not the only one making bucks from web dev because of Adrian. This guy is the man. God bless him.

    • @HrissW
      @HrissW 3 หลายเดือนก่อน

      How do you print man?

  • @brendanmilton5025
    @brendanmilton5025 8 หลายเดือนก่อน +3

    Great tutorial! Looks like it's only a 7 day free trial with payload now. Just letting you know :)

  • @mimcris8481
    @mimcris8481 ปีที่แล้ว +1

    E-Commerce app! Great, I'll definitely try this one out!

  • @programmerslife01
    @programmerslife01 ปีที่แล้ว +2

    Awesome of the awesomeness!!! As always, thank youu so much, Adrian! 😁😍😍

  • @adenkaine
    @adenkaine ปีที่แล้ว +2

    It would be cool to see how to incorporate the Printful API (which is free to start) into this for the products maybe on a future video! Good Job though, awesome stuff!

  • @vaibhavchauhan3741
    @vaibhavchauhan3741 ปีที่แล้ว +7

    You are Great 👍🏻👍🏻 Thanks for keeping this type of High quality content for free ❤❤

  • @pulkitmethaniya6471
    @pulkitmethaniya6471 ปีที่แล้ว +1

    You. Killed me 😢 I started your old ecommerce project today and make it half and you uploaded this 😢

    • @javascriptmastery
      @javascriptmastery  ปีที่แล้ว +1

      No worries, you'l llearn more that way if you combine the two! :)

  • @zorojuro5132
    @zorojuro5132 ปีที่แล้ว +3

    That's incredibally project. but i want to know, what would be happen after 30 days we used payload cloud ? are we have to pay the cloud for more ?

  • @khaledlkurdi
    @khaledlkurdi 9 หลายเดือนก่อน

    That is one of the best videos on the internet now 🔥 because it is solving and explaining a looooooot, thanks!!

  • @barbararajic3610
    @barbararajic3610 ปีที่แล้ว +5

    Adrian, you are a lifesaver. I have been looking for a quality course like this for weeks. Hvala ti puno ❤

  • @muhamedmouzoun
    @muhamedmouzoun 8 หลายเดือนก่อน

    The way you explain is amazing. It keeps you focused ! Thanks!

    • @MohamedAdel.9
      @MohamedAdel.9 2 หลายเดือนก่อน

      What's up, can i add it in my portfolio and deploy it

  • @judao1383
    @judao1383 9 หลายเดือนก่อน +2

    Thanks for the exellent content!
    Is there a guide for Deploying on the free tier in Vercel?

    • @MohamedAdel.9
      @MohamedAdel.9 2 หลายเดือนก่อน

      Can I deploy this project and make it a live demo in my portfolio

  • @adilhasan9943
    @adilhasan9943 ปีที่แล้ว +11

    Just finished watching your fantastic Next.js project video - loved how you explained everything so clearly! 🚀
    I was wondering if you have considered creating a video tutorial on building a social media project with Next.js and Sanity? It would be amazing to see your insights and guidance on creating such a dynamic project.
    Looking forward to more awesome content from your channel! 👍😊"

  • @michaelanthony4750
    @michaelanthony4750 ปีที่แล้ว +2

    You read my mind. I was just wondering how to use Payload. Thanks!

  • @WIMMYY
    @WIMMYY 28 วันที่ผ่านมา +4

    Was just trying to follow the video. I guess payload has removed the ecommerce template, hence the database link is not working ( at 13.05 ). Any alternative for this?

    • @rainernsa
      @rainernsa 12 วันที่ผ่านมา

      Same here, looking for an alternative to run it with

    • @DEADPOOL-nx3fg
      @DEADPOOL-nx3fg 12 วันที่ผ่านมา

      Did you guys find any alternative please reply if you have found one

  • @lhm9068
    @lhm9068 ปีที่แล้ว +2

    this is what i was looking for. I know the video will be absolutely amazing. Thank you so much jsm!!!

  • @omereker8824
    @omereker8824 10 หลายเดือนก่อน +2

    Hi, when will payload be available on vercel exactly? couldn't find an announcement about it

  • @KayodeVictor
    @KayodeVictor ปีที่แล้ว +1

    Sir you the best on youtube. No doubt!!!

  • @vikalindeman9315
    @vikalindeman9315 ปีที่แล้ว +5

    I started to have problems with payload right away, it creates a new repo and then throws and error Reference does not exist. And I can't find a way to fix it. Annoying, in the video project looks really cool, but it is impossible to start with all the bugs on Payload side

    • @javascriptmastery
      @javascriptmastery  ปีที่แล้ว

      Try reaching out to their Discord server :)

    • @payloadcms
      @payloadcms ปีที่แล้ว +3

      Hello! We uncovered an issue, where if you had a default branch name set on your repo (other than main) cloning a template would fail. We've made a change that will respect whatever your default branch name is, and this should now work as expected. Please give this another shot and let us know if you still run into an issue.

  • @yugal8627
    @yugal8627 ปีที่แล้ว +2

    You are just waooo as always Adrian👌.
    Just a humble request please bring a video on Figma and GraphQL.

  • @urbanebachelor
    @urbanebachelor ปีที่แล้ว +3

    Immediately get error when executing npm run dev. Looks like an issue with the /index.scss file in the payload folder.

    • @Voltvs93
      @Voltvs93 7 หลายเดือนก่อน

      Is this resolved? 👀

  • @youthfactfactory7877
    @youthfactfactory7877 ปีที่แล้ว +1

    Amazing video Adrian your explanations are awesome brother when it comes to react and nextjs
    ❣❣💖💖

  • @continuouslearner
    @continuouslearner ปีที่แล้ว +4

    Please add authentication via Google as its so much easier for users rather than registering using yet another password.

  • @programmershams
    @programmershams ปีที่แล้ว +2

    Bro you are the best developer i knew so far
    You are amazing 👏 ❤️

  • @anonymous12478
    @anonymous12478 ปีที่แล้ว +3

    why not tailwind css ?

  • @nitishkafle8470
    @nitishkafle8470 ปีที่แล้ว +1

    This is great, thanks for making these videos. Any plans on creating a blog based project with Next 14 & MDX ?

    • @antareephasan
      @antareephasan ปีที่แล้ว

      Hey, were you able to deploy it?
      Payload Cloud Storage is working?
      I am getting "access denied"

  • @suhailsayyed3210
    @suhailsayyed3210 ปีที่แล้ว +3

    Sir is your name is faizan ??

  • @a.tarikbostan
    @a.tarikbostan ปีที่แล้ว +2

    Maaaan this one and only content in entire youtube❤ Thanks brother

  • @ashutosh_tiwari
    @ashutosh_tiwari ปีที่แล้ว +61

    You're replying to people who don't even try to build this but you don't have time to reply my comment where i asked you about an error.....

    • @kadir_ozyurek
      @kadir_ozyurek ปีที่แล้ว +3

      What is the issue , can you solved it ?

    • @ashutosh_tiwari
      @ashutosh_tiwari ปีที่แล้ว

      @@kadir_ozyurek No it is not solved yet!!
      This is the error:- ERROR (payload): Incorrect username or password. In the console after pasting all the keys in the .env file. I checked so many times and all the keys pasted are correct without any typos.

    • @nishitlugun8394
      @nishitlugun8394 ปีที่แล้ว +7

      Exactly! This is the biggest problem with these creators, they will ask us to comment down the errors and when we do they’ll never reply.

    • @mrigankagogoi6262
      @mrigankagogoi6262 ปีที่แล้ว +54

      Be grateful for the free content he provided with his efforts even when you didn't asked for.

    • @ashutosh_tiwari
      @ashutosh_tiwari ปีที่แล้ว

      @@mrigankagogoi6262 it isn't related to what I asked. And yes I am very very grateful for his videos!!

  • @Ilohimushka
    @Ilohimushka 10 หลายเดือนก่อน +2

    This companies are wild ) every time youtuber makes tutorial they tighten up their free tier the same month )))

    • @amitabhkumar7671
      @amitabhkumar7671 9 หลายเดือนก่อน

      now they give 6 days free trial

  • @Badis-n2u
    @Badis-n2u 11 หลายเดือนก่อน +7

    But it seems a little complicated, anyone can relate ?

  • @melcrafter
    @melcrafter ปีที่แล้ว +1

    Teacher Adrian, in the Filters section the Checkbox component from PayloadCMS only need to change the name of the property Label to Name like indicate the Error message, but the checkBox is ugly so Thumb ups for the Custom Checkbox. Thank you for the Class

  • @ali5t4ir
    @ali5t4ir 6 หลายเดือนก่อน

    Thank you again for another amazing tutirial - may I ask you to do one for an online Art Gallery including frame mockups & sales module? much appreciate it

  • @mazeedsalvador8578
    @mazeedsalvador8578 ปีที่แล้ว

    Wow! I haven't started but just the demo is blowing my mind 🤯

  • @krateskim4169
    @krateskim4169 11 หลายเดือนก่อน

    My favourite full stack channel

  • @sarhan_104
    @sarhan_104 ปีที่แล้ว +1

    Bro I was not following you since a long, as I heard about tutorial hell stuff and copying one line to line
    But this one is to must follow
    Definitely gonna make it

  • @shubhamk1111
    @shubhamk1111 ปีที่แล้ว +1

    Hi there! My favourite Coding Educator ❤

  • @tobiaswidmer5937
    @tobiaswidmer5937 5 หลายเดือนก่อน

    Very very helpful tutorial. Thank you so much, you're truly a great instructor. I am a beginner of NextJS. I am building a blog website which also has a shop in a sub-page. Which CMS would you recommend? Payload or Strapi? Also: Would you start with the "Website" template of Payload and then integrate ecommerce, OR, start with ecommerce and integrate the blog ("Website")?

  • @toomgbebu164
    @toomgbebu164 7 หลายเดือนก่อน

    Appreciate the decication you give into what you do..keep it up. Want to also ask about the websites you normally use for your images and icons pls?

  • @ralphrosael
    @ralphrosael ปีที่แล้ว +2

    Wow! Thanks Sir for this awesome project! 🤩

  • @valentinote71
    @valentinote71 ปีที่แล้ว

    Thank you so much, Mr. Adrian! You provide knowledge about There really are a lot of these things.😁😁😁

  • @matthewmbazima
    @matthewmbazima ปีที่แล้ว +1

    This is insane!!!! You are the G.O.A.T💯

  • @user-yc3pb1ij7g
    @user-yc3pb1ij7g ปีที่แล้ว +1

    @1:16 (pages) > recover-password > index.module.css seems to be missing.

  • @rajimoshood
    @rajimoshood 8 หลายเดือนก่อน

    Adrian! This is really amazing. How can one add blogpost to this on payload? Blogpost is a very important tool in ecommerce and is missing in this tutorial 😢😢. Can simply creating a collection resolve this. Thanks for always creating high quality videos.

  • @freeion2023
    @freeion2023 ปีที่แล้ว +1

    Just Amazing. Exactly what I was waiting for.

  • @vritikbhardwaj.07
    @vritikbhardwaj.07 ปีที่แล้ว +2

    Amazing work!!! Really Inspiring.
    One request. Can you make videos on these two topics please:
    1. A full stack travel website ( you have one video on this but i want one on full stack)
    A solution/idea that can boost the current situation of the tourism industries including hotels, travel and others.
    2. A full stack expense tracker and financial management website

  • @cloudynana
    @cloudynana 21 วันที่ผ่านมา +2

    First Day: 1:15:00
    Second Day: 2:30:00
    Third Day: 3:52:16

  • @pokkareindeermeat
    @pokkareindeermeat 6 หลายเดือนก่อน

    24:50 If your working enviroment is Linux Manjro you should
    module.exports = {
    root: true,
    extends: ['plugin:@next/next/recommended', '@payloadcms'],
    ignorePatterns: ['**/payload-types.ts'],
    plugins: ['prettier'],
    rules: {
    'prettier/prettier': [
    'error',
    {
    endOfLine: 'lf',
    },
    ],
    'no-console': 'off',
    },
    }

  • @asaiahhenson
    @asaiahhenson ปีที่แล้ว +2

    am happy you did it this time with normal Css

  • @Devbello.
    @Devbello. ปีที่แล้ว

    Wow bro. Awesome project, quick suggestion; build a school portal for your next project ❤

  • @judevector
    @judevector ปีที่แล้ว +1

    Wow this is mind blowing 🤯, please can you also do backend projects

  • @agadaFrancisLouis
    @agadaFrancisLouis 8 หลายเดือนก่อน

    Adrian, Payload is awesome!!!😄😍😍😍❤

  • @IbanTheOne
    @IbanTheOne 4 วันที่ผ่านมา

    The new stable Payload 3 release is a total game changer. 🚀

  • @Showmatic
    @Showmatic ปีที่แล้ว +1

    Payload sure is growing, I love using it

  • @SerefYakup
    @SerefYakup 6 หลายเดือนก่อน

    Rbt platform is super reliable, no issues with transactions. IPL lottery ke liye best 💪💵

  • @robertotieno7414
    @robertotieno7414 ปีที่แล้ว

    Thank you so much sir! I love these tutorials. Learning so much.

  • @umairulislam9048
    @umairulislam9048 ปีที่แล้ว +1

    What an incredible Project 😮😊😮

  • @perry-cyber
    @perry-cyber ปีที่แล้ว +2

    I've been looking for this for years on TH-cam 😂😂😂

    • @javascriptmastery
      @javascriptmastery  ปีที่แล้ว +1

      It's finally here! :)

    • @perry-cyber
      @perry-cyber ปีที่แล้ว

      And I'm really glad saying a big thanks to you and your team for the hard work

  • @aymensettey8975
    @aymensettey8975 ปีที่แล้ว +1

    Wow one of the best excited to start coding it along❤

  • @edenmaimon6983
    @edenmaimon6983 ปีที่แล้ว

    I've been following you for a year and half and really enjoy your videos, you make them just great!
    Just for understanding - is this project paid after the 30 day trial?
    Thanks!! ❤

    • @javascriptmastery
      @javascriptmastery  ปีที่แล้ว +1

      You can always deploy it on your own for free, but even better, soon enough, a Vercel deployment will be within their free tier :)

  • @G_O_J_O_S_A_T_O_R_U
    @G_O_J_O_S_A_T_O_R_U ปีที่แล้ว +2

    Amazing stuff as always, everything looks smooth , cant wait to build this

  • @devanshsinghparmar
    @devanshsinghparmar ปีที่แล้ว +1

    THIS IS OUTSTANDING FOR SURE

  • @jpsrealtor
    @jpsrealtor 2 หลายเดือนก่อน

    Hi Adrian, thank you so much for this video, this looks like an awesome project. Before I get started, do you have a live version out on the internet anywhere? i went to the deployment part at the end to see the URL but it looks like it did not get published via vercel. Would love to see a live demo of this.

  • @MAA-op4gw
    @MAA-op4gw 4 หลายเดือนก่อน

    Excuse me, sir.
    I believe you dropped this 👑

  • @ahmedhaidda526
    @ahmedhaidda526 ปีที่แล้ว

    Adrian! Thank you for another project video .. js master ❤

  • @status-200-ok
    @status-200-ok 2 หลายเดือนก่อน

    It would be great to be able to see more projects with Payload Cms but using it locally to then deploy it all in full on our own server

  • @ishaanrawat9846
    @ishaanrawat9846 ปีที่แล้ว

    Definitely a project that will standout and look good on my portfolio have to learn next js and typescript first :X