-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (28 loc) · 1.08 KB
/
.env.example
File metadata and controls
38 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# GeoNode MCP Server Configuration
# Copy this file to .env and update the values for your GeoNode instance
# Required: Base URL of your GeoNode instance
GEONODE_BASE_URL=https://demo.geonode.org
# Optional: Authentication credentials
# Use either username/password OR token, not both
# Basic Authentication
GEONODE_USERNAME=your_username
GEONODE_PASSWORD=your_password
# OR Token Authentication
# GEONODE_TOKEN=your_api_token
# Optional: SSL verification (default: true)
GEONODE_VERIFY_SSL=true
# Examples for different GeoNode instances:
# Public demo instance (no authentication needed)
# GEONODE_BASE_URL=https://master.demo.geonode.org
# Private instance with basic auth
# GEONODE_BASE_URL=https://your-private-geonode.org
# GEONODE_USERNAME=admin
# GEONODE_PASSWORD=admin
# Instance with token authentication
# GEONODE_BASE_URL=https://your-geonode.org
# GEONODE_TOKEN=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...
# Development instance with self-signed certificates
# GEONODE_BASE_URL=https://dev-geonode.local
# GEONODE_USERNAME=developer
# GEONODE_PASSWORD=devpass
# GEONODE_VERIFY_SSL=false