https://github.com/yugo-asia/decoa.jp/commit/c16d0c23c59cc8585c70639f18a4bf3cbdd62735
- WordPressはデフォルトでjQueryが読み込まれているので、追加でjQueryを読み込む必要は無い。
https://github.com/yugo-asia/decoa.jp/commit/c16d0c23c59cc8585c70639f18a4bf3cbdd62735
| <?php | |
| // ** Database settings - You can get this info from your web host ** // | |
| /** The name of the database for WordPress */ | |
| define( 'DB_NAME', 'local' ); | |
| /** Database username */ | |
| define( 'DB_USER', 'root' ); | |
| /** Database password */ |
| Button(action: { | |
| NSApp.keyWindow?.close() | |
| }) { | |
| Image(systemName: "xmark.circle.fill") | |
| .foregroundColor(.red) | |
| } |
xcrun simctl --set previews delete all
| # git | |
| alias gs='git status' | |
| alias gd='git diff' | |
| alias ga='git add' | |
| alias gb='git branch' | |
| alias gl='git log' | |
| alias glp='git log -p' | |
| alias gcm='git commit -m' | |
| alias gc='git checkout' | |
| alias gst='git stash' |
| { | |
| "phpVersion": "7.4", | |
| "core": "./_public", | |
| "port": 8888 | |
| } |
# cliのphpのバージョンを選択して切り替える
sudo update-alternatives --config php
# apache2のphpを無効化 & 有効化
sudo a2dismod php8.0 && sudo a2enmod php7.4
Cross-platform support (macOS, Windows, Linux)
# Check installable node versions
$ fnm list-remote
# Install new node version
$ fnm install v18.16.0