From e81f023943c0144997c1aa88d5f4392a4aa7e885 Mon Sep 17 00:00:00 2001 From: vorotamoroz Date: Fri, 8 May 2026 03:01:22 +0000 Subject: [PATCH] Add default test env --- src/apps/cli/.gitignore | 4 +++- src/apps/cli/testdeno/.test.env | 9 +++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 src/apps/cli/testdeno/.test.env diff --git a/src/apps/cli/.gitignore b/src/apps/cli/.gitignore index 69dd5ab..24987cb 100644 --- a/src/apps/cli/.gitignore +++ b/src/apps/cli/.gitignore @@ -3,4 +3,6 @@ test/* !test/*.sh test/test-init.local.sh node_modules -.*.json \ No newline at end of file +.*.json +*.env +!.test.env \ No newline at end of file diff --git a/src/apps/cli/testdeno/.test.env b/src/apps/cli/testdeno/.test.env new file mode 100644 index 0000000..4ce5fb8 --- /dev/null +++ b/src/apps/cli/testdeno/.test.env @@ -0,0 +1,9 @@ +hostname=http://127.0.0.1:5989/ +dbname=livesync-test-db-ci +username=admin +password=testpassword +minioEndpoint=http://127.0.0.1:9000 +accessKey=minioadmin +secretKey=minioadmin +bucketName=livesync-test-bucket-ci +LIVESYNC_TEST_TEE=1 \ No newline at end of file