Documentação completa: aqui
curl -X POST \
--header 'Content-Type: application/json' \
--data '{
"client_id": "GUO6Qo7r6i0JaP9zLgk0GOeb1KIzelCn",
Documentação completa: aqui
curl -X POST \
--header 'Content-Type: application/json' \
--data '{
"client_id": "GUO6Qo7r6i0JaP9zLgk0GOeb1KIzelCn",
#!/bin/bash | |
# Include any branches for which you wish to disable this script | |
BRANCHES_TO_SKIP=(main) | |
# Get the current branch name and check if it is excluded | |
BRANCH_NAME=$(git symbolic-ref --short HEAD) | |
BRANCH_EXCLUDED=$(printf "%s\n" "${BRANCHES_TO_SKIP[@]}" | grep -c "^$BRANCH_NAME$") | |
# Trim it down to get the parts we're interested in with a comment # at line start | |
TRIMMED=$(echo \# $BRANCH_NAME | sed -e 's:^\([^-]*-[^-]*\)-.*:\1:' -e \ | |
'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/') |
#!/usr/bin/python3 | |
import pika, os, logging, json | |
logging.basicConfig() | |
credentials = pika.PlainCredentials('user', 's3cre7') | |
parameters = pika.ConnectionParameters('localhost', | |
5672, | |
'/', |
$ git describe --tags --abbrev=0 $(git rev-list origin/main --tags --max-count=1)
$ git log origin/main v1.2.9 -1 --pretty=%H
yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
yum install postgresql11
yum install postgresql11-server
yum install postgresql96-contrib