diff --git a/example/.env.example b/example/.env.example deleted file mode 100644 index 0c88f46..0000000 --- a/example/.env.example +++ /dev/null @@ -1,6 +0,0 @@ -# for google oauth Authentication -GOOGLE_CLIENT_ID=********************** -GOOGLE_CLIENT_SECRET=********************** -GOOGLE_ALLOWED_USERS=alice@example.com,bob@example.com -# for Password Authentication -PASSWORD=changeme diff --git a/example/.mcp.json b/example/.mcp.json deleted file mode 100644 index bf3074f..0000000 --- a/example/.mcp.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "mcpServers": { - "test": { - "type": "http", - "url": "http://localhost/mcp" - } - } -} diff --git a/example/docker-compose.yaml b/example/docker-compose.yaml deleted file mode 100644 index 9f60434..0000000 --- a/example/docker-compose.yaml +++ /dev/null @@ -1,24 +0,0 @@ -services: - mcp-auth-proxy: - build: - context: .. - dockerfile: Dockerfile - restart: unless-stopped - env_file: - - .env - ports: - - 80:80 - environment: - # If you are accessing from outside (such as Claude Web), - # be sure to specify a domain name that can be accessed from outside for EXTERNAL_URL. - - EXTERNAL_URL=http://localhost - - PROXY_URL=http://playwright:8931 - volumes: - - ./data:/data - playwright: - image: mcr.microsoft.com/playwright/mcp - restart: unless-stopped - init: true - command: - - --host=0.0.0.0 - - --port=8931