mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-08 16:03:20 +00:00
this would allow developer to run a minio server for testing, for instance, s3_test, using something like: ```console $ python3 test/pylib/minio_server.py --host 127.0.0.1 tempdir='/tmp/tmpfoobar-minio' export S3_SERVER_ADDRESS_FOR_TEST=127.0.0.1 export S3_SERVER_PORT_FOR_TEST=900 export S3_PUBLIC_BUCKET_FOR_TEST=testbucket ``` and developer is supposed to copy-and-paste the `export` commands to prepare the environmental variables for the test using the minio server. the tempdir is used for the rundir of minio, and it is also used for holding the log file of this tool. one might want to check it when necessary. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>