backend
└── shows
├── show-1
│ ├── episodes
│ │ ├── episode-1.mp4
... │ ...
│ │ └── episode-n.mp4
│ ├── cover.jpg
│ └── info.json
│ ├── name
│ ├── pathName
│ ├── image
│ └── type(movie/show)
└── show-n
├── episodes
│ ├── episode-1.mp4
│ ...
│ └── episode-n.mp4
├── cover.jpg
└── info.json
├── name
├── pathName
├── image
└── type(movie/show)
Start the client by going into the frontend folder, installing all the dependencies (npm install) and running npm run dev
(You need go installed to run the server and node + npm to run the client)