This is the step by step for ONLY Apple Silicon Chip.
Please see full instruction at: https://github.com/oraclesean/cloud-native-oracle
- Docker Desktop https://docs.docker.com/desktop/install/mac-install/
import time | |
class Watcher: | |
""" | |
Measure the elapsed time of a block of code | |
Usage: | |
1. with statement: |
#/bin/bash | |
branch_name='' | |
force_export=false | |
usage() { | |
echo "Usage: $0 <prod|uat> [OPTIONS]" | |
echo "Options:" | |
echo " -h, --help Display this help message" | |
echo " -f, --force Force export (even no new commit)" |
This is the step by step for ONLY Apple Silicon Chip.
Please see full instruction at: https://github.com/oraclesean/cloud-native-oracle
http
)Minimum DNS settings
Type | Value | Proxied Status |
---|---|---|
A | 0.0.0.0 |
Proxied |
<?php | |
use Symfony\Component\Console\Output\ConsoleOutput; | |
use Symfony\Component\Console\Formatter\OutputFormatterStyle; | |
use Illuminate\Support\Facades\DB; | |
function generate_color_console() { | |
/** Reference: https://symfony.com/doc/current/console/coloring.html */ | |
$output = new ConsoleOutput(); |
const fs = require('fs') | |
const path = require('path') | |
const nextConfig = require('../next.config') | |
// Create pages directory. | |
// NOTE: if you have different location, please change. | |
const pageDir = path.join(__dirname, '../src/pages') | |
// Determine trailing slash configuration. | |
const isTrailingSlash = nextConfig.trailingSlash === undefined |