├── .gitignore ├── README.md ├── deno.json ├── deps.ts ├── helpers ├── pick_replica.ts ├── pick_share.ts └── replica_archive.ts └── scripts ├── add_server.ts ├── add_share.ts ├── archive_share.ts ├── current_author.ts ├── forget_author.ts ├── list_authors.ts ├── list_paths.ts ├── list_servers.ts ├── list_shares.ts ├── new_author.ts ├── new_share.ts ├── remove_server.ts ├── remove_share.ts ├── save_attachment.ts ├── set_author.ts ├── share_info.ts ├── show_share_secret.ts ├── sync_all.ts ├── sync_archive.ts ├── sync_dir.ts ├── sync_with_server.ts └── write_replica.ts /.gitignore: -------------------------------------------------------------------------------- 1 | test_stuff 2 | share_data/* 3 | .DS_Store 4 | .vscode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/README.md -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- 1 | { 2 | "lock": false 3 | } 4 | -------------------------------------------------------------------------------- /deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/deps.ts -------------------------------------------------------------------------------- /helpers/pick_replica.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/helpers/pick_replica.ts -------------------------------------------------------------------------------- /helpers/pick_share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/helpers/pick_share.ts -------------------------------------------------------------------------------- /helpers/replica_archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/helpers/replica_archive.ts -------------------------------------------------------------------------------- /scripts/add_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/add_server.ts -------------------------------------------------------------------------------- /scripts/add_share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/add_share.ts -------------------------------------------------------------------------------- /scripts/archive_share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/archive_share.ts -------------------------------------------------------------------------------- /scripts/current_author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/current_author.ts -------------------------------------------------------------------------------- /scripts/forget_author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/forget_author.ts -------------------------------------------------------------------------------- /scripts/list_authors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/list_authors.ts -------------------------------------------------------------------------------- /scripts/list_paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/list_paths.ts -------------------------------------------------------------------------------- /scripts/list_servers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/list_servers.ts -------------------------------------------------------------------------------- /scripts/list_shares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/list_shares.ts -------------------------------------------------------------------------------- /scripts/new_author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/new_author.ts -------------------------------------------------------------------------------- /scripts/new_share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/new_share.ts -------------------------------------------------------------------------------- /scripts/remove_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/remove_server.ts -------------------------------------------------------------------------------- /scripts/remove_share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/remove_share.ts -------------------------------------------------------------------------------- /scripts/save_attachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/save_attachment.ts -------------------------------------------------------------------------------- /scripts/set_author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/set_author.ts -------------------------------------------------------------------------------- /scripts/share_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/share_info.ts -------------------------------------------------------------------------------- /scripts/show_share_secret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/show_share_secret.ts -------------------------------------------------------------------------------- /scripts/sync_all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/sync_all.ts -------------------------------------------------------------------------------- /scripts/sync_archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/sync_archive.ts -------------------------------------------------------------------------------- /scripts/sync_dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/sync_dir.ts -------------------------------------------------------------------------------- /scripts/sync_with_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/sync_with_server.ts -------------------------------------------------------------------------------- /scripts/write_replica.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthstar-project/user_scripts/HEAD/scripts/write_replica.ts --------------------------------------------------------------------------------