shuk 0.4.7

A command line tool that uploads files to Amazon S3 buckets, and generates presigned URLs for easy sharing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// CONFIGURATION FILES
pub static CONFIG_DIR_NAME: &str = "shuk";
pub static CONFIG_FILE_NAME: &str = "shuk.toml";

// UPDATED: 2024-04-20
pub static CONFIG_FILE: &str = r#"bucket_name = "foo"
bucket_prefix = "bar"
presigned_time = 86400
aws_profile = "default"
use_clipboard = false
fallback_region = "us-east-1"
"#;