Visit the project site
This project is based on the API of the official Peertube index.
More information about Peertube could be found here.
Current repo is the front-end part of the project. It is based on the STTV - Svelte / Typescript / Tailwind / Vite template
The back-end part repository could be found here.
- [Node.js] (https://nodejs.org/)
- [Svelte] (https://svelte.dev/)
- [Tailwindcss] (https://tailwindcss.com/)
- [Page] (https://github.com/visionmedia/page.js)
git clone https://github.com/acdmft/peertuber-front.git
cd peertuber-front
npm install
// to run front-end client you need to connect to back-end server,
// to do this you need to create .env file and add URL of the server
touch .env
echo "VITE_API_URL=http://localhost:<port number of backend-server>" >> .env
// to start client type following command
npm run dev