408 commandes partagées

Ta mémoire technique
collaborative

Ne perds plus jamais une commande. Recherche, copie et partage tes solutions techniques en quelques secondes.

CodeBox
408 Commandes
13 Développeurs
99 Technologies

10 résultat(s) pour "auth"

Authentifie Docker auprès d'Amazon ECR.

bash
aws ecr get-login-password --region eu-west-1 | docker login --username AWS --password-stdin 123456789.dkr.ecr.eu-west-1.amazonaws.com

Installe le starter kit d'authentification Breeze.

bash
composer require laravel/breeze --dev && php artisan breeze:install

Installe Breeze avec le stack React + Inertia.

bash
php artisan breeze:install react

Installe Breeze avec le stack Vue + Inertia.

bash
php artisan breeze:install vue

Installe et publie la config Sanctum pour les API tokens.

bash
composer require laravel/sanctum && php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider"

Génère une Policy d'autorisation liée à un Model.

bash
php artisan make:policy NomPolicy --model=NomModel

Génère un composant dans un chemin précis.

bash
ng g c features/auth/login

Génère un guard pour la protection des routes.

bash
ng g guard guards/auth

Génère un interceptor HTTP.

bash
ng g interceptor interceptors/auth

Installe et configure OAuth2 avec Laravel Passport.

bash
composer require laravel/passport && php artisan passport:install