├── .gitignore ├── README.md ├── config.json ├── examples ├── config.json └── helloworld │ ├── cli-installer.js │ ├── config.json │ ├── config │ ├── development.json │ ├── production.json │ └── schema.json │ └── server.js ├── lib ├── wizard.js └── wizard │ ├── cli.js │ └── web.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/config.json -------------------------------------------------------------------------------- /examples/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/examples/config.json -------------------------------------------------------------------------------- /examples/helloworld/cli-installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/examples/helloworld/cli-installer.js -------------------------------------------------------------------------------- /examples/helloworld/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/examples/helloworld/config.json -------------------------------------------------------------------------------- /examples/helloworld/config/development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/examples/helloworld/config/development.json -------------------------------------------------------------------------------- /examples/helloworld/config/production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/examples/helloworld/config/production.json -------------------------------------------------------------------------------- /examples/helloworld/config/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/examples/helloworld/config/schema.json -------------------------------------------------------------------------------- /examples/helloworld/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/examples/helloworld/server.js -------------------------------------------------------------------------------- /lib/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/lib/wizard.js -------------------------------------------------------------------------------- /lib/wizard/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/lib/wizard/cli.js -------------------------------------------------------------------------------- /lib/wizard/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/lib/wizard/web.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marak/wizard/HEAD/package.json --------------------------------------------------------------------------------