Skip to content

Behroz-b4/PakMeow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PakMeow is a video platform that allows users to watch and upload videos, similar to platforms like YouTube, Dailymotion, and Bilibili. It provides a user-friendly interface for content creators to share their videos and for viewers to discover, stream, and engage with a wide variety of content.

Step 1: Create Firebase Account

1. Create Authentication with email and password.

2. Create Firestore Database and rules below:

rules_version = '2';
service cloud.firestore {
    match /databases/{database}/documents {
        match /users/{userId} {
            allow read, write: if request.auth != null && request.auth.uid == userId;
            allow create: if request.auth != null && request.auth.uid == userId
                          && request.resource.data.uid == userId;
        }
        match /videos/{videoId} {
            allow read: if true;
            allow write: if request.auth != null;
            match /interactions/{userId} {
                allow read: if true;
                allow write: if request.auth != null && request.auth.uid == userId;
            }
        }
    }
}

Demo Screenshort

Live Demo link: PakMeow



PakMeow SS1 PakMeow SS2 PakMeow SS3

About

[PakMeow] is a video platform to provide video.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published