Install android SDK (bottom of the page) or full android studio if you need to develop on android.
fastboot
looks like adb
but it is used when device is in bootloader
(or fastboot).
<?php | |
require_once __DIR__ . '/../vendor/autoload.php'; | |
// COPY-PASTE THE FOLLOWING PART INTO YOUR bootstrap/app.php FILE | |
/* | |
|-------------------------------------------------------------------------- | |
| Load Custom .env.* files | |
|-------------------------------------------------------------------------- |
<?php | |
/** | |
*/ | |
Mail::raw('hello world', function($message) { $message->to('[email protected]')->subject('Testing mails'); }); | |
/** | |
* Notification | |
*/ |
Install android SDK (bottom of the page) or full android studio if you need to develop on android.
fastboot
looks like adb
but it is used when device is in bootloader
(or fastboot).
#!Make | |
include .env | |
export $(shell sed 's/=.*//' .env) | |
# Install database | |
install_db: | |
echo 'CREATE DATABASE IF NOT EXISTS `$(DB_DATABASE)`' | mysql -u$(DB_USERNAME) -p$(DB_PASSWORD) -h$(DB_HOST) | |
make fresh |
function b() { | |
# Couleurs | |
red=`tput setaf 1` | |
green=`tput setaf 2` | |
yellow=`tput setaf 3` | |
magenta=`tput setaf 5` | |
blue=`tput setaf 6` | |
reset=`tput sgr0` | |
branch_to_use='' |