URL: http://teamcity:8111/httpAuth/app/rest/projects/
Method: POST
Accept: application/xml
| Book* | |
| Book me a flight | |
| from? -> Book me a flight from? | |
| Book me a flight from? | |
| to? -> Book me a flight from? to? | |
| Book me a flight from? to? | |
| leaving? -> Book me a flight from? to? leaving? | |
| Book me a flight from? to? leaving? | |
| tonight -> END | |
| END |
| #!/bin/bash | |
| brew install dnsmasq | |
| cp $(brew list dnsmasq | grep /dnsmasq.conf.example$) /usr/local/etc/dnsmasq.conf | |
| sudo cp $(brew list dnsmasq | grep /homebrew.mxcl.dnsmasq.plist$) /Library/LaunchDaemons/ | |
| sudo launchctl load /Library/LaunchDaemons/homebrew.mxcl.dnsmasq.plist | |
| echo "address=/<domain>/<ip-address>" >> /usr/local/etc/dnsmasq.conf | |
| sudo launchctl stop homebrew.mxcl.dnsmasq | |
| sudo launchctl start homebrew.mxcl.dnsmasq | |
| sudo mkdir -p /etc/resolver | |
| sudo tee /etc/resolver/<domain> >/dev/null <<EOF |
URL: http://teamcity:8111/httpAuth/app/rest/projects/
Method: POST
Accept: application/xml
| # | |
| # | |
| # Github API wrapper | |
| # | |
| # | |
| import sh | |
| from pygithub3 import Github | |