As a users, for the following commands: build, up, down I would like to be able to just pass a name of an environment and have it be build if the settings are available, otherwise display me an error.
Currently the command is hard coded as npm run build:dev.
Instead if should be npm run build (--)dev. It may need a switch depending on the library used.
Based on the name, the Dockerfile. files are used, as well as other environmental settings.
As a users, for the following commands:
build
,up
,down
I would like to be able to just pass a name of an environment and have it be build if the settings are available, otherwise display me an error.Currently the command is hard coded as
npm run build:dev
.Instead if should be
npm run build (--)dev
. It may need a switch depending on the library used.Based on the name, the Dockerfile. files are used, as well as other environmental settings.