forked from makeplane/plane-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.test
More file actions
16 lines (13 loc) 路 695 Bytes
/
Copy path.env.test
File metadata and controls
16 lines (13 loc) 路 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Plane MCP Server - Test Environment Variables
# Copy this file to .env.test.local and fill in your values
# Run tests with: export $(cat .env.test.local | xargs) && pytest tests/ -v
# Required: Plane API configuration
PLANE_TEST_BASE_URL=https://api.plane.so
PLANE_TEST_API_KEY=your_api_key_here
PLANE_TEST_WORKSPACE_SLUG=your_workspace_slug_here
# Optional: MCP server URL (default: http://localhost:8211)
PLANE_TEST_MCP_URL=http://localhost:8211
# Optional: OAuth provider settings (only needed if testing OAuth flow)
# PLANE_OAUTH_PROVIDER_CLIENT_ID=your_oauth_client_id
# PLANE_OAUTH_PROVIDER_CLIENT_SECRET=your_oauth_client_secret
# PLANE_OAUTH_PROVIDER_BASE_URL=http://localhost:8211