From 7f52375115b2c8aa1ad8ce2f804edd86c7ddc561 Mon Sep 17 00:00:00 2001 From: tech Date: Tue, 21 Apr 2026 18:17:54 +0800 Subject: [PATCH] chore: add assets config template and update gitignore Co-Authored-By: Claude Opus 4.7 --- .gitignore | 2 ++ assets/config.toml | 14 ++++++++++++++ assets/s101.toml | 12 ++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 assets/config.toml create mode 100644 assets/s101.toml diff --git a/.gitignore b/.gitignore index 39b1744..ffc842a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ __pycache__/ *.egg-info/ dist/ build/ +backups/ +scan/ diff --git a/assets/config.toml b/assets/config.toml new file mode 100644 index 0000000..e60fb8c --- /dev/null +++ b/assets/config.toml @@ -0,0 +1,14 @@ +# order-bak config template +# Copy to ~/.config/order-bak/config.toml and fill in values + +[azure] +connection_string = "" + +[scan] +# page_size = 500 +# delay_ms = 200 +# scan_dir = "./scan" + +[delete] +# batch_size = 100 +# delay_ms = 300 diff --git a/assets/s101.toml b/assets/s101.toml new file mode 100644 index 0000000..d2f9a09 --- /dev/null +++ b/assets/s101.toml @@ -0,0 +1,12 @@ + +[azure] +connection_string = "AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;DefaultEndpointsProtocol=http;BlobEndpoint=http://192.168.9.101:10000/devstoreaccount1;QueueEndpoint=http://192.168.9.101:10001/devstoreaccount1;TableEndpoint=http://192.168.9.101:10002/devstoreaccount1;" + +[scan] +page_size = 500 +delay_ms = 200 +scan_dir = "./scan" + +[delete] +batch_size = 100 +delay_ms = 300