I hereby claim:
- I am iuricmp on github.
- I am iuricmp (https://keybase.io/iuricmp) on keybase.
- I have a public key ASDmebvBXZUgblpsHdqOsKlDhjalClFtvzs8YAmOVhDNiwo
To claim this, I am signing this object:
import { useState } from "react"; | |
import logo from "./assets/images/logo-universal.png"; | |
import "./App.css"; | |
import { useGno } from "./api/use-gno"; | |
function App() { | |
const [resultText, setResultText] = useState( | |
"Start GnoNative Kit on Wails to see result" | |
); |
#/bin/zsh | |
VERSION=14.0.0 # set version here | |
cd /tmp | |
git clone [email protected]:keycloak/keycloak-containers.git | |
cd keycloak-containers/server | |
git checkout $VERSION | |
docker build -t "jboss/keycloak:${VERSION}" . | |
docker build -t "quay.io/keycloak/keycloak:${VERSION}" . |
const clientId = pm.variables.get('clientId'); | |
const oauthUser = pm.variables.get('oauthUser'); // user name or email | |
const oauthPassword = pm.variables.get('oauthPassword'); // user password | |
const scope = pm.variables.get('scope'); // "profile" | |
const accessTokenURL = pm.variables.get('accessTokenURL'); // token url | |
const getTokenRequest = { | |
method: 'POST', | |
url: accessTokenURL, |
var clientId = pm.variables.get("clientId"); | |
var clientSecret = pm.variables.get("clientSecret"); | |
var scope = pm.variables.get("scope"); | |
var accessTokenURL = pm.variables.get("accessTokenURL"); | |
pm.sendRequest({ | |
url: accessTokenURL, | |
method: "POST", | |
header: [ | |
'Content-Type:application/x-www-form-urlencoded' |
# Name of the resource we're selectively copying | |
GOOGLESERVICE_INFO_PLIST=GoogleService-Info.plist | |
# Get references to dev and prod versions of the GoogleService-Info.plist | |
# NOTE: These should only live on the file system and should NOT be part of the target (since we'll be adding them to the target manually) | |
GOOGLESERVICE_INFO_DEV=${PROJECT_DIR}/${TARGET_NAME}/Firebase/Dev/${GOOGLESERVICE_INFO_PLIST} | |
GOOGLESERVICE_INFO_PROD=${PROJECT_DIR}/${TARGET_NAME}/Firebase/Prod/${GOOGLESERVICE_INFO_PLIST} | |
# Make sure the dev version of GoogleService-Info.plist exists | |
echo "Looking for ${GOOGLESERVICE_INFO_PLIST} in ${GOOGLESERVICE_INFO_DEV}" |
I hereby claim:
To claim this, I am signing this object:
git rebase --interactive HEAD~2 | |
# we are going to squash c into b | |
pick b76d157 b | |
pick a931ac7 c | |
# squash c into b | |
pick b76d157 b | |
s a931ac7 c |
# Docker | |
``` | |
sudo service docker stop | |
sudo service docker start | |
``` | |
# Docker | |
docker build -t nginx/top . #tagging |