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
var uuid = require('uuid') | |
var myUUID = uuid.v4() | |
console.log(myUUID) | |
pm.environment.set("myUUID",myUUID) |
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
name: Sonar Scan | |
on: | |
push: | |
branches: | |
- sonarqube-setup | |
jobs: | |
build-and-analyze: | |
runs-on: [ ubuntu-latest ] |
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
import io.vertx.core.Vertx; | |
import io.vertx.ext.jdbc.JDBCClient; | |
import io.vertx.ext.jdbc.spi.impl.C3P0DataSourceProvider; | |
import io.vertx.core.json.JsonObject; | |
public class DatabaseFailoverExample { | |
private static final String DB1_URL = "jdbc:mysql://db1:3306/mydb"; | |
private static final String DB2_URL = "jdbc:mysql://db2:3306/mydb"; | |
private static final int TIMEOUT = 5000; // Timeout for DB connection attempts (5 seconds) |
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
services: | |
db: | |
image: mysql:9.1.0 | |
restart: always | |
environment: | |
MYSQL_DATABASE: 'db' | |
# So you don't have to use root, but you can if you like | |
MYSQL_USER: 'user' | |
# You can use whatever password you like | |
MYSQL_PASSWORD: 'password' |
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
services: | |
another-database-if-you-need: # Example. Remove before using. | |
image: postgres:17beta3-alpine3.20 | |
environment: | |
POSTGRES_DB: postgres | |
POSTGRES_USER: admin | |
POSTGRES_PASSWORD: admin | |
ports: | |
- "5432:5432" | |
networks: |
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
# Set variables in .bashrc file | |
# don't forget to change your path correctly! | |
export GOPATH=$HOME/golang | |
export GOROOT=/usr/local/opt/go/libexec | |
export PATH=$PATH:$GOPATH/bin | |
export PATH=$PATH:$GOROOT/bin |
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
func loginPost(in *AuthParam, reqInfo RequestInfo) (*SignInResponse, error) { | |
keycloakURL := os.Getenv("KEYCLOAK_URL") + "auth/realms/" + os.Getenv("KEYCLOAK_REALM_NAME") + "/protocol/openid-connect/token" | |
clientToken := base64.StdEncoding.EncodeToString([]byte(os.Getenv("KEYCLOAK_ADMIN_CLIENT_SECRET"))) | |
form := url.Values{ | |
"grant_type": {"password"}, | |
"username": {in.Username}, | |
"password": {in.Password}, | |
"scope": {"openid"}, | |
} |
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
image: "ghcr.io/cirruslabs/flutter:3.22.3" | |
stages: | |
- build | |
- deploy | |
variables: | |
FIREBASE_CLI_VERSION: "11.5.0" | |
GRADLE_USER_HOME: "/builds/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME/.gradle" |
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
# backup-database.sh | |
#!/bin/bash | |
# Name: mysql-daily.backup.sh | |
# Date: Monday, 1 July 2024 09.00 WIB | |
# Usage: Ubuntu Linux Backup MySQL Server Shell Script | |
# Author: Hendi Santika https:/s.id/hendisantika under GPL v2.x+ | |
# ------------------------------------------------------------------- | |
# Konfigurasi | |
DB_NAME="DB_NAME" | |
DB_USER="DB_USER" |
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
name: Deploy DEV WEB APP | |
on: | |
push: | |
branches: | |
- master | |
env: | |
ENV_GITHUB: ${{ vars.ENV_GITHUB }} | |
IMAGE_TAG: ${{ github.run_number }} | |
CONTAINER_NAME: dalim-fe | |
REGISTRY: docker.io |
NewerOlder