First clone project with depth, where X is commit quantity:
git clone repository-path --depth x
After define de first commit in .git/info/grafts
file:
<?php | |
namespace App\Http\Requests; | |
use App\Http\Requests\Request; | |
class CauseRequest extends Request | |
{ | |
/** | |
* Determine if the user is authorized to make this request. | |
* | |
* @return bool | |
*/ |
@servers(['web' => 'username@hostname']) | |
@setup | |
$path = '/var/www/html' | |
@endsetup | |
@story('deploy') | |
git | |
composer | |
config |
# Informations about docker versions | |
docker version | |
# Informations about docker | |
docker info | |
# See images | |
docker image ls | |
# Manager images |
<?php | |
class Carro | |
{ | |
#[Validacao('max', 110)] | |
public int $velocidade; | |
} | |
#[Attribute] | |
class Validacao{ |
/* Presencial */ | |
let professorProcurado = 'GABRIEL LOPES PAULO'; | |
let dias = document.getElementById('DataPlanilhaMarcacaoId').options; | |
for(var i = 0; i < dias.length; i++){ | |
let formData = new FormData(); | |
formData.append('StatusPlanilhaId', dias[i].value); | |
formData.append('AulaWeb', 'true'); |
<style> | |
* { | |
font-family: "Muli", sans-serif; | |
} | |
.form-embed { | |
padding: 1rem; | |
width: 100%; | |
box-sizing: border-box; | |
display: flex; | |
flex-direction: column; |