{"id":44781947,"url":"https://github.com/cryptogarageinc/goose-wrapper","last_synced_at":"2026-03-02T04:08:09.893Z","repository":{"id":336799073,"uuid":"1150507410","full_name":"cryptogarageinc/goose-wrapper","owner":"cryptogarageinc","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-15T23:12:35.000Z","size":49,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-16T14:38:39.631Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cryptogarageinc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-05T11:08:28.000Z","updated_at":"2026-02-15T23:12:37.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cryptogarageinc/goose-wrapper","commit_stats":null,"previous_names":["cryptogarageinc/goose-wrapper"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cryptogarageinc/goose-wrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fgoose-wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fgoose-wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fgoose-wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fgoose-wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cryptogarageinc","download_url":"https://codeload.github.com/cryptogarageinc/goose-wrapper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptogarageinc%2Fgoose-wrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29992286,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-16T08:22:32.493Z","updated_at":"2026-03-02T04:08:09.887Z","avatar_url":"https://github.com/cryptogarageinc.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# goose-wrapper\n\nThis application adds output formatting options to [goose](https://github.com/pressly/goose).\n\n## commands\n\n```sh\nUsage: goose DRIVER DBSTRING [OPTIONS] COMMAND                                                                                                                                                                                                                        or\n\nSet environment key\nGOOSE_DRIVER=DRIVER\nGOOSE_DBSTRING=DBSTRING\nGOOSE_MIGRATION_DIR=MIGRATION_DIR\n\nUsage: goose [OPTIONS] COMMAND\n\nDrivers:\n    postgres\n    mysql\n    sqlite3\n    spanner\n    mssql\n    redshift\n    tidb\n    clickhouse\n    ydb\n    starrocks\n    turso\n\nExamples:\n    goose sqlite3 ./foo.db status\n    goose sqlite3 ./foo.db create init sql\n    goose sqlite3 ./foo.db create add_some_column sql\n    goose sqlite3 ./foo.db create fetch_user_data go\n    goose sqlite3 ./foo.db up\n\n    goose postgres \"user=postgres dbname=postgres sslmode=disable\" status\n    goose redshift \"postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db\" status\n    goose tidb \"user:password@/dbname?parseTime=true\" status\n    goose mssql \"sqlserver://user:password@dbname:1433?database=master\" status\n    goose clickhouse \"tcp://127.0.0.1:9000\" status\n    goose ydb \"grpcs://localhost:2135/local?go_query_mode=scripting\u0026go_fake_tx=scripting\u0026go_query_bind=declare,numeric\" status\n    goose turso \"libsql://dbname.turso.io?authToken=token\" status\n\n    GOOSE_DRIVER=sqlite3 GOOSE_DBSTRING=./foo.db goose status\n    GOOSE_DRIVER=sqlite3 GOOSE_DBSTRING=./foo.db goose create init sql\n    GOOSE_DRIVER=postgres GOOSE_DBSTRING=\"user=postgres dbname=postgres sslmode=disable\" goose status\n    GOOSE_DRIVER=redshift GOOSE_DBSTRING=\"postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db\" goose status\n    GOOSE_DRIVER=turso GOOSE_DBSTRING=\"libsql://dbname.turso.io?authToken=token\" goose status\n    GOOSE_DRIVER=clickhouse GOOSE_DBSTRING=\"clickhouse://user:password@qwerty.clickhouse.cloud:9440/dbname?secure=true\u0026skip_verify=false\" goose status\n\nOptions:\n\n  -allow-missing\n        applies missing (out-of-order) migrations\n  -dir string\n        directory with migration files, (GOOSE_MIGRATION_DIR env variable supported) (default \".\")\n  -env string\n        load environment variables from file (default .env)\n  -h    print help\n  -no-color\n        disable color output (NO_COLOR env variable supported)\n  -no-versioning\n        apply migration commands with no versioning, in file order, from directory pointed to\n  -output string\n        output log format type: std/disable/slog/json (default \"std\")\n  -s    use sequential numbering for new migrations\n  -table string\n        migrations table name\n  -timeout duration\n        maximum allowed duration for queries to run; e.g., 1h13m\n  -v    enable verbose mode\n  -version\n        print version\n\nCommands:\n    up                   Migrate the DB to the most recent version available\n    up-by-one            Migrate the DB up by 1\n    up-to VERSION        Migrate the DB to a specific VERSION\n    down                 Roll back the version by 1\n    down-to VERSION      Roll back to a specific VERSION\n    redo                 Re-run the latest migration\n    reset                Roll back all migrations\n    status               Dump the migration status for the current DB\n    version              Print the current version of the database\n    create NAME [sql|go] Creates new migration file with the current timestamp\n    fix                  Apply sequential ordering to migrations\n    validate             Check migration files without running them\n```\n\n## usage\n\n```bash\ngoose [command] [arguments]\n\n# example\ngoose -output=json up\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptogarageinc%2Fgoose-wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcryptogarageinc%2Fgoose-wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptogarageinc%2Fgoose-wrapper/lists"}