Update the system packages to the latest versions:
1. Postman Download Link
Extract .tar.gz Files using Linux Command Line ...
1. PhpStorm Download Link
Extract .tar.gz Files using Linux Command Line ...
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
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
<?php | |
// Last 20 commits | |
$number_of_log = 20 | |
// Change To Repo Directory | |
chdir("/full/path/to/repo"); | |
// Load Last 10 Git Logs | |
$git_history = []; | |
$git_logs = []; |
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
const winston = require('winston'); | |
const { format } = require('winston'); | |
const appRoot = require('app-root-path'); | |
const config = require('./config'); | |
const printf = (info) => { | |
if (typeof info.message === 'object') { | |
// eslint-disable-next-line no-param-reassign | |
info.message = JSON.stringify(info.message, null, 3); | |
} |
Path
subl /etc/nginx/sites-available/default
Restart
sudo systemctl reload nginx && sudo nginx -s reload && sudo nginx -t
URL
http://localhost/dev/