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

36 résultat(s) pour "install"

Affiche la version d'Apache2 installée.

bash
apache2 -v

Génère et installe un certificat SSL Let's Encrypt pour Apache.

bash
sudo certbot --apache -d mon-site.com -d www.mon-site.com

Installe Certbot et son plugin Apache pour les certificats Let's Encrypt.

bash
sudo apt install certbot python3-certbot-apache -y

Installe une collection de modules Ansible Galaxy.

bash
ansible-galaxy collection install community.general

Installe tous les rôles et collections listés dans requirements.yml.

bash
ansible-galaxy install -r requirements.yml

Installe un paquet sur des hôtes CentOS/RHEL.

bash
ansible all -m yum -a "name=nginx state=present" --become

Affiche tous les rôles Ansible Galaxy installés localement.

bash
ansible-galaxy list

Installe un paquet sur des hôtes Debian/Ubuntu.

bash
ansible all -m apt -a "name=nginx state=present" --become

Démarre l'exécution du playbook à partir d'une tâche nommée.

bash
ansible-playbook deploy.yml --start-at-task="Installer Nginx"

Télécharge et installe un rôle depuis Ansible Galaxy.

bash
ansible-galaxy install geerlingguy.nginx

Crée un nouveau projet Laravel depuis composer.

bash
composer create-project "laravel/laravel:^11.0" nom-projet

Installe l'écosystème NgRx complet.

bash
npm install @ngrx/store @ngrx/effects @ngrx/entity @ngrx/store-devtools

Installe et configure OAuth2 avec Laravel Passport.

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

Configure le projet comme une Progressive Web App.

bash
ng add @angular/pwa

Installe NgRx Store pour la gestion d'état.

bash
ng add @ngrx/store