You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 13, 2025. It is now read-only.
Allow creating installs using only command line options (#51)
When no interactive session is available `inquirer` doesn't work, e.g.
in Dockerfiles or automated scripts.
In theses cases you can use the command line options that are added with
this PR.
E.g. install a dev install:
```shell
nodecg-io install --nodecg-io-version development --samples
```
Or create a production install using a specific list of servies:
```shell
nodecg-io install --nodecg-io-version 0.1 --service twitch-chat
--service discord
```
Create a production install with all available services installed:
```shell
nodecg-io install --nodecg-io-version 0.2 --all-services
```
0 commit comments