Mishig
commited on
Commit
•
f730778
1
Parent(s):
9405754
[Fix README] Nit: some small indent issues (#741)
Browse files
README.md
CHANGED
@@ -429,10 +429,10 @@ You can then add the generated information and the `authorization` parameter to
|
|
429 |
|
430 |
```env
|
431 |
"endpoints": [
|
432 |
-
{
|
433 |
-
"url": "https://HOST:PORT",
|
434 |
-
"authorization": "Basic VVNFUjpQQVNT",
|
435 |
-
}
|
436 |
]
|
437 |
```
|
438 |
|
@@ -444,15 +444,15 @@ If the model being hosted will be available on multiple servers/instances add th
|
|
444 |
|
445 |
```env
|
446 |
"endpoints": [
|
447 |
-
{
|
448 |
-
"url": "https://HOST:PORT",
|
449 |
-
"weight": 1
|
450 |
-
}
|
451 |
-
{
|
452 |
-
"url": "https://HOST:PORT",
|
453 |
-
"weight": 2
|
454 |
-
}
|
455 |
-
...
|
456 |
]
|
457 |
```
|
458 |
|
|
|
429 |
|
430 |
```env
|
431 |
"endpoints": [
|
432 |
+
{
|
433 |
+
"url": "https://HOST:PORT",
|
434 |
+
"authorization": "Basic VVNFUjpQQVNT",
|
435 |
+
}
|
436 |
]
|
437 |
```
|
438 |
|
|
|
444 |
|
445 |
```env
|
446 |
"endpoints": [
|
447 |
+
{
|
448 |
+
"url": "https://HOST:PORT",
|
449 |
+
"weight": 1
|
450 |
+
},
|
451 |
+
{
|
452 |
+
"url": "https://HOST:PORT",
|
453 |
+
"weight": 2
|
454 |
+
}
|
455 |
+
...
|
456 |
]
|
457 |
```
|
458 |
|