3. React with firebase 9 - Blog app (Firebase rules, Hosting)

Sdílet
Vložit
  • čas přidán 8. 09. 2024

Komentáře • 12

  • @CodewithVoran
    @CodewithVoran  Před 2 lety

    If the security rule is not working properly, use the following code.
    rules_version = '2';
    service cloud.firestore {
    match /databases/{database}/documents {
    match /{document=**} {
    allow read, write;
    allow delete: if request.auth.uid == userId;
    allow create, update : if request.auth.uid != null;
    }
    }
    }

  • @frankebuka2693
    @frankebuka2693 Před rokem

    Another feature that will be really helpful is to comment or like on another comment. Thanks Voran 🙏

  • @frankebuka2693
    @frankebuka2693 Před rokem

    Thanks, Voran for the nice tutorial, it was really helpful in building my blog app, but if you can still add re-share or to re-tweet a post feature in the app, it will be highly appreciated 🙏

  • @anthonyzornig
    @anthonyzornig Před 2 lety +1

    Hey Voran, thank you very, very much ! Great work ! It is straight forward, minimistic code, comprehensive and with very good overview into several use cases.
    Again, thanks !

  • @anthonyzornig
    @anthonyzornig Před 2 lety

    Voran, if you plan to extend the Blog App: a search bar cross search comments, users, titles & descriptions would be great!

  • @chathurangamadhawapathirat1933

    After deploying the the App, let’s say I made some some improvement to the App, so how to remove currently deployed App and deploy the updated version of the App ….?

  • @bornclasher1294
    @bornclasher1294 Před rokem

    after firebase deploy the given host link shows welcome to firebase hosting instead of my website. Now what I do

  • @edberaga
    @edberaga Před rokem

    how to update the website hosting tho?