This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = OpenAIConsequential; | |
/** @type {import('@redocly/cli').OasDecorator} */ | |
function OpenAIConsequential() { | |
return { | |
PathItem(PathItem) { | |
if (PathItem['get']) { | |
PathItem['get']['x-openai-isConsequential'] = true; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lint: | |
extends: | |
- minimal | |
rules: | |
operation-operationId: off | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## first install vagrant hostmanager: | |
# `$ vagrant plugin install vagrant-hostmanager` | |
$script = <<SCRIPT | |
echo I am provisioning... | |
date > vagrant_provisioned_at | |
echo I am setting up nginx vhost configuration ... | |
cp -rp /vagrant/masterclass.nginx.conf /etc/nginx/conf.d/ | |
service nginx restart | |
echo web server is ready, access at http://dev.masterclass.com |