Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow CLI flags to be set using env variables
We had a problem that while deploying we couldn't change the CLI command. However, we can add env variables. This commit solves the given problem. All flags can now optionally be added as env variables. They need to be prefixed with NEUME. For example, the below commands are equal - npx neume crawl --from 0 - NEUME_FROM=0 npx neume crawl
- Loading branch information