├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── open-pr-on-commit.yaml │ ├── push-on-merge-staging.yaml │ └── push-on-merge.yaml ├── .vscode └── extensions.json ├── README.md ├── f ├── a │ ├── folder.meta.yaml │ ├── usable_undefined.script.lock │ ├── usable_undefined.script.yaml │ └── usable_undefined.ts ├── app_ccs │ └── folder.meta.yaml ├── app_custom │ ├── My_Component.resource.yaml │ └── folder.meta.yaml ├── app_groups │ ├── folder.meta.yaml │ ├── group_1.resource.yaml │ └── group_2.resource.yaml ├── app_themes │ ├── folder.meta.yaml │ ├── theme_0.resource.yaml │ ├── theme_1.resource.yaml │ └── theme_2.resource.yaml ├── b │ ├── folder.meta.yaml │ ├── gorgeous_script.script.lock │ ├── gorgeous_script.script.yaml │ └── gorgeous_script.ts ├── c │ ├── folder.meta.yaml │ ├── trusted_script.script.lock │ ├── trusted_script.script.yaml │ └── trusted_script.ts ├── d │ ├── booming_script.script.lock │ ├── booming_script.script.yaml │ ├── booming_script.ts │ └── folder.meta.yaml ├── delivery │ ├── cleared_script.deno.ts │ ├── cleared_script.script.lock │ ├── cleared_script.script.yaml │ └── folder.meta.yaml ├── e │ ├── cheaper_script.script.lock │ ├── cheaper_script.script.yaml │ ├── cheaper_script.ts │ └── folder.meta.yaml ├── examples │ ├── efficient_script.deno.ts │ ├── efficient_script.script.lock │ ├── efficient_script.script.yaml │ ├── folder.meta.yaml │ ├── product_dashboard.app │ │ ├── all_product_data.inline_script.lock │ │ ├── all_product_data.inline_script.ts │ │ ├── app.yaml │ │ ├── one_product_detail.inline_script.lock │ │ ├── one_product_detail.inline_script.ts │ │ ├── product_brand_count.inline_script.lock │ │ ├── product_brand_count.inline_script.ts │ │ ├── product_category_count.inline_script.lock │ │ ├── product_category_count.inline_script.ts │ │ ├── product_stock_total_worth.inline_script.lock │ │ ├── product_stock_total_worth.inline_script.ts │ │ ├── stock_worth_title.inline_script.lock │ │ └── stock_worth_title.inline_script.ts │ ├── snappy_script.script.lock │ ├── snappy_script.script.yaml │ └── snappy_script.ts ├── examples_etl │ └── folder.meta.yaml ├── f │ ├── folder.meta.yaml │ ├── triumphant_script.script.lock │ ├── triumphant_script.script.yaml │ └── triumphant_script.ts ├── foo │ ├── compatible_script.script.lock │ ├── compatible_script.script.yaml │ ├── compatible_script.ts │ ├── folder.meta.yaml │ ├── low_risk_script.deno.ts │ ├── low_risk_script.script.lock │ └── low_risk_script.script.yaml ├── g │ ├── folder.meta.yaml │ ├── mature_script.script.lock │ ├── mature_script.script.yaml │ └── mature_script.ts ├── git │ └── folder.meta.yaml ├── group │ ├── copy_of_weroew_prew_porkewp_orewpo_r.deno.ts │ ├── copy_of_weroew_prew_porkewp_orewpo_r.script.lock │ ├── copy_of_weroew_prew_porkewp_orewpo_r.script.yaml │ └── folder.meta.yaml ├── h │ ├── exhilarating_script.script.lock │ ├── exhilarating_script.script.yaml │ ├── exhilarating_script.ts │ └── folder.meta.yaml ├── i │ ├── folder.meta.yaml │ ├── speedy_script.script.lock │ ├── speedy_script.script.yaml │ └── speedy_script.ts ├── j │ ├── adoring_script.script.lock │ ├── adoring_script.script.yaml │ ├── adoring_script.ts │ └── folder.meta.yaml ├── k │ ├── folder.meta.yaml │ ├── happier_script.script.lock │ ├── happier_script.script.yaml │ └── happier_script.ts ├── l │ ├── folder.meta.yaml │ ├── rational_script.script.lock │ ├── rational_script.script.yaml │ └── rational_script.ts ├── m │ ├── folder.meta.yaml │ ├── grand_script.script.lock │ ├── grand_script.script.yaml │ └── grand_script.ts ├── n │ ├── folder.meta.yaml │ ├── quieter_script.script.lock │ ├── quieter_script.script.yaml │ └── quieter_script.ts ├── o │ ├── fortunate_script.script.lock │ ├── fortunate_script.script.yaml │ └── fortunate_script.ts └── user │ ├── ambitious_script.deno.ts │ ├── ambitious_script.script.lock │ ├── ambitious_script.script.yaml │ ├── benevolent_mysql.resource.yaml │ ├── benevolent_mysql.variable.yaml │ ├── folder.meta.yaml │ ├── foo.pg.sql │ ├── foo.script.yaml │ ├── innocuous_script.deno.ts │ ├── innocuous_script.script.lock │ └── innocuous_script.script.yaml ├── img ├── git_sync_tab.png ├── resource_creation.png └── token_creation.png ├── wmill-lock.yaml └── wmill.yaml /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/open-pr-on-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/.github/workflows/open-pr-on-commit.yaml -------------------------------------------------------------------------------- /.github/workflows/push-on-merge-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/.github/workflows/push-on-merge-staging.yaml -------------------------------------------------------------------------------- /.github/workflows/push-on-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/.github/workflows/push-on-merge.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/README.md -------------------------------------------------------------------------------- /f/a/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/a/folder.meta.yaml -------------------------------------------------------------------------------- /f/a/usable_undefined.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/a/usable_undefined.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/a/usable_undefined.script.yaml -------------------------------------------------------------------------------- /f/a/usable_undefined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/a/usable_undefined.ts -------------------------------------------------------------------------------- /f/app_ccs/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/app_ccs/folder.meta.yaml -------------------------------------------------------------------------------- /f/app_custom/My_Component.resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/app_custom/My_Component.resource.yaml -------------------------------------------------------------------------------- /f/app_custom/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/app_custom/folder.meta.yaml -------------------------------------------------------------------------------- /f/app_groups/folder.meta.yaml: -------------------------------------------------------------------------------- 1 | display_name: App Groups 2 | extra_perms: 3 | g/all: false 4 | owners: [] 5 | -------------------------------------------------------------------------------- /f/app_groups/group_1.resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/app_groups/group_1.resource.yaml -------------------------------------------------------------------------------- /f/app_groups/group_2.resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/app_groups/group_2.resource.yaml -------------------------------------------------------------------------------- /f/app_themes/folder.meta.yaml: -------------------------------------------------------------------------------- 1 | display_name: App Themes 2 | extra_perms: 3 | g/all: false 4 | owners: [] 5 | -------------------------------------------------------------------------------- /f/app_themes/theme_0.resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/app_themes/theme_0.resource.yaml -------------------------------------------------------------------------------- /f/app_themes/theme_1.resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/app_themes/theme_1.resource.yaml -------------------------------------------------------------------------------- /f/app_themes/theme_2.resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/app_themes/theme_2.resource.yaml -------------------------------------------------------------------------------- /f/b/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/b/folder.meta.yaml -------------------------------------------------------------------------------- /f/b/gorgeous_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/b/gorgeous_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/b/gorgeous_script.script.yaml -------------------------------------------------------------------------------- /f/b/gorgeous_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/b/gorgeous_script.ts -------------------------------------------------------------------------------- /f/c/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/c/folder.meta.yaml -------------------------------------------------------------------------------- /f/c/trusted_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/c/trusted_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/c/trusted_script.script.yaml -------------------------------------------------------------------------------- /f/c/trusted_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/c/trusted_script.ts -------------------------------------------------------------------------------- /f/d/booming_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/d/booming_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/d/booming_script.script.yaml -------------------------------------------------------------------------------- /f/d/booming_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/d/booming_script.ts -------------------------------------------------------------------------------- /f/d/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/d/folder.meta.yaml -------------------------------------------------------------------------------- /f/delivery/cleared_script.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/delivery/cleared_script.deno.ts -------------------------------------------------------------------------------- /f/delivery/cleared_script.script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/delivery/cleared_script.script.lock -------------------------------------------------------------------------------- /f/delivery/cleared_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/delivery/cleared_script.script.yaml -------------------------------------------------------------------------------- /f/delivery/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/delivery/folder.meta.yaml -------------------------------------------------------------------------------- /f/e/cheaper_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/e/cheaper_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/e/cheaper_script.script.yaml -------------------------------------------------------------------------------- /f/e/cheaper_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/e/cheaper_script.ts -------------------------------------------------------------------------------- /f/e/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/e/folder.meta.yaml -------------------------------------------------------------------------------- /f/examples/efficient_script.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/efficient_script.deno.ts -------------------------------------------------------------------------------- /f/examples/efficient_script.script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/efficient_script.script.lock -------------------------------------------------------------------------------- /f/examples/efficient_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/efficient_script.script.yaml -------------------------------------------------------------------------------- /f/examples/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/folder.meta.yaml -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/all_product_data.inline_script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/all_product_data.inline_script.lock -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/all_product_data.inline_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/all_product_data.inline_script.ts -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/app.yaml -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/one_product_detail.inline_script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/one_product_detail.inline_script.lock -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/one_product_detail.inline_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/one_product_detail.inline_script.ts -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/product_brand_count.inline_script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/product_brand_count.inline_script.lock -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/product_brand_count.inline_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/product_brand_count.inline_script.ts -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/product_category_count.inline_script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/product_category_count.inline_script.lock -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/product_category_count.inline_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/product_category_count.inline_script.ts -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/product_stock_total_worth.inline_script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/product_stock_total_worth.inline_script.lock -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/product_stock_total_worth.inline_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/product_stock_total_worth.inline_script.ts -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/stock_worth_title.inline_script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/stock_worth_title.inline_script.lock -------------------------------------------------------------------------------- /f/examples/product_dashboard.app/stock_worth_title.inline_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/product_dashboard.app/stock_worth_title.inline_script.ts -------------------------------------------------------------------------------- /f/examples/snappy_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/examples/snappy_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/snappy_script.script.yaml -------------------------------------------------------------------------------- /f/examples/snappy_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples/snappy_script.ts -------------------------------------------------------------------------------- /f/examples_etl/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/examples_etl/folder.meta.yaml -------------------------------------------------------------------------------- /f/f/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/f/folder.meta.yaml -------------------------------------------------------------------------------- /f/f/triumphant_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/f/triumphant_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/f/triumphant_script.script.yaml -------------------------------------------------------------------------------- /f/f/triumphant_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/f/triumphant_script.ts -------------------------------------------------------------------------------- /f/foo/compatible_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/foo/compatible_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/foo/compatible_script.script.yaml -------------------------------------------------------------------------------- /f/foo/compatible_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/foo/compatible_script.ts -------------------------------------------------------------------------------- /f/foo/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/foo/folder.meta.yaml -------------------------------------------------------------------------------- /f/foo/low_risk_script.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/foo/low_risk_script.deno.ts -------------------------------------------------------------------------------- /f/foo/low_risk_script.script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/foo/low_risk_script.script.lock -------------------------------------------------------------------------------- /f/foo/low_risk_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/foo/low_risk_script.script.yaml -------------------------------------------------------------------------------- /f/g/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/g/folder.meta.yaml -------------------------------------------------------------------------------- /f/g/mature_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/g/mature_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/g/mature_script.script.yaml -------------------------------------------------------------------------------- /f/g/mature_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/g/mature_script.ts -------------------------------------------------------------------------------- /f/git/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/git/folder.meta.yaml -------------------------------------------------------------------------------- /f/group/copy_of_weroew_prew_porkewp_orewpo_r.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/group/copy_of_weroew_prew_porkewp_orewpo_r.deno.ts -------------------------------------------------------------------------------- /f/group/copy_of_weroew_prew_porkewp_orewpo_r.script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/group/copy_of_weroew_prew_porkewp_orewpo_r.script.lock -------------------------------------------------------------------------------- /f/group/copy_of_weroew_prew_porkewp_orewpo_r.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/group/copy_of_weroew_prew_porkewp_orewpo_r.script.yaml -------------------------------------------------------------------------------- /f/group/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/group/folder.meta.yaml -------------------------------------------------------------------------------- /f/h/exhilarating_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/h/exhilarating_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/h/exhilarating_script.script.yaml -------------------------------------------------------------------------------- /f/h/exhilarating_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/h/exhilarating_script.ts -------------------------------------------------------------------------------- /f/h/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/h/folder.meta.yaml -------------------------------------------------------------------------------- /f/i/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/i/folder.meta.yaml -------------------------------------------------------------------------------- /f/i/speedy_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/i/speedy_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/i/speedy_script.script.yaml -------------------------------------------------------------------------------- /f/i/speedy_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/i/speedy_script.ts -------------------------------------------------------------------------------- /f/j/adoring_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/j/adoring_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/j/adoring_script.script.yaml -------------------------------------------------------------------------------- /f/j/adoring_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/j/adoring_script.ts -------------------------------------------------------------------------------- /f/j/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/j/folder.meta.yaml -------------------------------------------------------------------------------- /f/k/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/k/folder.meta.yaml -------------------------------------------------------------------------------- /f/k/happier_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/k/happier_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/k/happier_script.script.yaml -------------------------------------------------------------------------------- /f/k/happier_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/k/happier_script.ts -------------------------------------------------------------------------------- /f/l/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/l/folder.meta.yaml -------------------------------------------------------------------------------- /f/l/rational_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/l/rational_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/l/rational_script.script.yaml -------------------------------------------------------------------------------- /f/l/rational_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/l/rational_script.ts -------------------------------------------------------------------------------- /f/m/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/m/folder.meta.yaml -------------------------------------------------------------------------------- /f/m/grand_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/m/grand_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/m/grand_script.script.yaml -------------------------------------------------------------------------------- /f/m/grand_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/m/grand_script.ts -------------------------------------------------------------------------------- /f/n/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/n/folder.meta.yaml -------------------------------------------------------------------------------- /f/n/quieter_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/n/quieter_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/n/quieter_script.script.yaml -------------------------------------------------------------------------------- /f/n/quieter_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/n/quieter_script.ts -------------------------------------------------------------------------------- /f/o/fortunate_script.script.lock: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } 4 | //bun.lockb 5 | -------------------------------------------------------------------------------- /f/o/fortunate_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/o/fortunate_script.script.yaml -------------------------------------------------------------------------------- /f/o/fortunate_script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/o/fortunate_script.ts -------------------------------------------------------------------------------- /f/user/ambitious_script.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/ambitious_script.deno.ts -------------------------------------------------------------------------------- /f/user/ambitious_script.script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/ambitious_script.script.lock -------------------------------------------------------------------------------- /f/user/ambitious_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/ambitious_script.script.yaml -------------------------------------------------------------------------------- /f/user/benevolent_mysql.resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/benevolent_mysql.resource.yaml -------------------------------------------------------------------------------- /f/user/benevolent_mysql.variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/benevolent_mysql.variable.yaml -------------------------------------------------------------------------------- /f/user/folder.meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/folder.meta.yaml -------------------------------------------------------------------------------- /f/user/foo.pg.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /f/user/foo.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/foo.script.yaml -------------------------------------------------------------------------------- /f/user/innocuous_script.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/innocuous_script.deno.ts -------------------------------------------------------------------------------- /f/user/innocuous_script.script.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/innocuous_script.script.lock -------------------------------------------------------------------------------- /f/user/innocuous_script.script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/f/user/innocuous_script.script.yaml -------------------------------------------------------------------------------- /img/git_sync_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/img/git_sync_tab.png -------------------------------------------------------------------------------- /img/resource_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/img/resource_creation.png -------------------------------------------------------------------------------- /img/token_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/img/token_creation.png -------------------------------------------------------------------------------- /wmill-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/wmill-lock.yaml -------------------------------------------------------------------------------- /wmill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windmill-labs/windmill-sync-example/HEAD/wmill.yaml --------------------------------------------------------------------------------