forked from TrueCloudLab/frostfs-testcases
a20ec58614
* Add S3-gate testcase
10 lines
326 B
Python
10 lines
326 B
Python
#!/usr/bin/python3
|
|
import os
|
|
|
|
NEOFS_ENDPOINT = "s01.neofs.devenv:8080"
|
|
NEOGO_CLI_PREFIX = "docker exec -it main_chain neo-go"
|
|
NEO_MAINNET_ENDPOINT = "main_chain.neofs.devenv:30333"
|
|
|
|
NEOFS_NEO_API_ENDPOINT = 'http://main_chain.neofs.devenv:30333'
|
|
HTTP_GATE = 'http://http.neofs.devenv'
|
|
S3_GATE = 'https://s3.neofs.devenv:8080'
|