Skip to content

Version 1.0.0

Latest
Compare
Choose a tag to compare
@softvar softvar released this 03 Feb 05:52

[1.0.0] - 2025-01-30

Added

  • First release of VWO FME Tech Debt Client
    Basic Usage

    # Build the binary
    go build
    
    # Option 1: Using environment variables
    export VWO_SOURCE_FOLDER=/path/to/source
    export VWO_ACCOUNT_ID=123456
    export VWO_API_TOKEN=abcd123
    export VWO_REPO_BRANCH=main
    export VWO_REPO_NAME=my-repo
    
    ./vwo-fme-tech-debt-client
    
    # Option 2: Using command line arguments
    ./vwo-fme-tech-debt-client \
        --sourceFolder=/path/to/source \
        --accountId=123456 \
        --apiToken=abcd123 \
        --repoBranch=main \
        --repoName=my-repo