Skip to content

Commit b2978f6

Browse files
committed
Update README.md
1 parent 0dbcc67 commit b2978f6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Bash script for processing translation files through PTC (Private Translation Cl
1919
### Using Configuration File (Recommended)
2020

2121
```bash
22-
# Create config.yml (without sensitive data)
23-
cat > config.yml << 'EOF'
22+
# Create config file
23+
cat > .ptc-config.yml << 'EOF'
2424
source_locale: en
2525
2626
files:
@@ -35,11 +35,11 @@ files:
3535
EOF
3636

3737
# Process translations with token from command line
38-
./ptc-cli.sh --config-file config.yml --api-token="$PTC_API_TOKEN"
38+
./ptc-cli.sh --config-file .ptc-config.yml --api-token="$PTC_API_TOKEN"
3939

4040
# Or set environment variable
4141
export PTC_API_TOKEN=your-secret-token
42-
./ptc-cli.sh --config-file config.yml
42+
./ptc-cli.sh --config-file .ptc-config.yml
4343
```
4444

4545
### Using Patterns

0 commit comments

Comments
 (0)