feat: Add MCP server for YouTube CLI API integration
This commit is contained in:
parent
62f76db98d
commit
a778a016ae
14
app.log
Normal file
14
app.log
Normal file
@ -0,0 +1,14 @@
|
||||
Error saving archive: [Errno 13] Permission denied: '/app'
|
||||
* Serving Flask app 'app'
|
||||
* Debug mode: on
|
||||
[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
|
||||
* Running on all addresses (0.0.0.0)
|
||||
* Running on http://127.0.0.1:4096
|
||||
* Running on http://192.168.122.203:4096
|
||||
[33mPress CTRL+C to quit[0m
|
||||
* Restarting with stat
|
||||
Error saving archive: [Errno 13] Permission denied: '/app'
|
||||
* Debugger is active!
|
||||
* Debugger PIN: 556-686-523
|
||||
192.168.122.1 - - [03/Feb/2026 19:10:11] "GET /search?q=roo+vs+cline HTTP/1.1" 200 -
|
||||
127.0.0.1 - - [03/Feb/2026 19:10:13] "GET /health HTTP/1.1" 200 -
|
||||
42
docker-setup.md
Normal file
42
docker-setup.md
Normal file
@ -0,0 +1,42 @@
|
||||
# Docker No-Sudo Setup Guide
|
||||
|
||||
To run Docker commands without sudo, you need to add your user to the `docker` group. Here's how to do it:
|
||||
|
||||
## Add User to Docker Group
|
||||
|
||||
```bash
|
||||
sudo usermod -aG docker $USER
|
||||
```
|
||||
|
||||
## Apply Group Changes
|
||||
|
||||
After adding to the group, you need to either:
|
||||
1. **Log out and log back in**, or
|
||||
2. **Run this command** to apply changes without logging out:
|
||||
```bash
|
||||
newgrp docker
|
||||
```
|
||||
|
||||
## Verify Setup
|
||||
|
||||
Check that you can run Docker commands without sudo:
|
||||
```bash
|
||||
docker info
|
||||
```
|
||||
|
||||
## Alternative: Create Docker Socket Permissions
|
||||
|
||||
If you prefer not to add users to groups, you can modify socket permissions:
|
||||
```bash
|
||||
sudo chmod 666 /var/run/docker.sock
|
||||
```
|
||||
|
||||
## Security Note
|
||||
|
||||
Adding users to the docker group provides full Docker daemon access. This is equivalent to having root access, so only add trusted users to this group.
|
||||
|
||||
## Persistent Setup
|
||||
|
||||
To make this change persistent across reboots:
|
||||
1. Ensure the docker service is enabled: `sudo systemctl enable docker`
|
||||
2. The group membership will persist after reboot
|
||||
Loading…
x
Reference in New Issue
Block a user