jurassiscripts / velociraptor

The npm-style script runner for Deno

Home Page:https://velociraptor.run

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can you specify an envFile for each script?

antoniogamiz opened this issue · comments

It could be useful to have a development envfile and another for production.

Hey @antoniogamiz, you mean something like this?

scripts:
  dev:
    envFile: .env.dev
    # ...

  prod:
    envFile: .env.prod
    # ...

If yes, this is already possible, see environment variables

@antoniogamiz I'll leave you to close this if the proposed solution works 🙂