-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
22 lines (19 loc) · 795 Bytes
/
.env.example
File metadata and controls
22 lines (19 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Gerrit Client Configuration
# Copy this file to .env and customize with your settings
#
# Configuration is loaded from environment variables with GERRIT_ prefix.
# You can either:
# 1. Set environment variables directly: export GERRIT_URL=https://...
# 2. Create a .env file (copy this template)
# Gerrit server URL (required)
# Example: https://review.openstack.org or http://localhost:8080
GERRIT_URL=https://review.example.com
# Authentication type (optional)
# Valid values: basic, digest
# Omit or leave empty for anonymous access
GERRIT_AUTH_TYPE=basic
# Credentials (required if GERRIT_AUTH_TYPE is set)
# Username: Your Gerrit account username
# Password: HTTP password from Gerrit (Settings -> HTTP Credentials)
GERRIT_USERNAME=your-username
GERRIT_PASSWORD=your-http-password