Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: env file improvements #3376

Merged
merged 2 commits into from
Oct 18, 2024
Merged

feat: env file improvements #3376

merged 2 commits into from
Oct 18, 2024

Commits on Oct 18, 2024

  1. feat: make values from --dotenv available to Azure workers

    Currently the values set in an env file are only made available
    to the Artillery process running in a worker Azure, instead of
    being set at the container level.
    
    This means that for example it's impossible to set the DEBUG
    environment variable in the worker to help debug issues.
    
    This change makes tests on Azure ACI work in the same way as
    tests on AWS Fargate.
    hassy committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    ac209b1 View commit details
    Browse the repository at this point in the history
  2. feat: rename --dotenv to --env-file

    Add --env-file as an alias for the existing --dotenv flag.
    
    "--dotenv" is a confusing name when saying it out loud (e.g. on
    a support call). "--env-file" is more precise and is also used
    by Node.js v20 and above:
    
    https://nodejs.org/dist/latest-v20.x/docs/api/cli.html#--env-fileconfig
    hassy committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    58f9085 View commit details
    Browse the repository at this point in the history