We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dbcc67 commit b2978f6Copy full SHA for b2978f6
1 file changed
README.md
@@ -19,8 +19,8 @@ Bash script for processing translation files through PTC (Private Translation Cl
19
### Using Configuration File (Recommended)
20
21
```bash
22
-# Create config.yml (without sensitive data)
23
-cat > config.yml << 'EOF'
+# Create config file
+cat > .ptc-config.yml << 'EOF'
24
source_locale: en
25
26
files:
@@ -35,11 +35,11 @@ files:
35
EOF
36
37
# Process translations with token from command line
38
-./ptc-cli.sh --config-file config.yml --api-token="$PTC_API_TOKEN"
+./ptc-cli.sh --config-file .ptc-config.yml --api-token="$PTC_API_TOKEN"
39
40
# Or set environment variable
41
export PTC_API_TOKEN=your-secret-token
42
-./ptc-cli.sh --config-file config.yml
+./ptc-cli.sh --config-file .ptc-config.yml
43
```
44
45
### Using Patterns
0 commit comments