Transform YouTube from consumption to true learning.
- Navigate to the server directory:
cd server- Install Python dependencies:
pip install -r requirements.txt- Create a
.envfile from the example and add the environment variables:
cp .env.example .env- Install Node.js dependencies:
npm installYou can run both the frontend and backend servers with a single command:
./start-dev.shOr run them separately:
cd server
python main.pynpm run dev- Frontend: http://localhost:8081
- Backend API: http://localhost:8002
- API Documentation: http://localhost:8002/docs
MIT