#up

46 commande(s) avec le tag #up

Commandes partagées par la communauté CodeBox, copiables en un clic.

Affiche tous les facts Ansible d'un hôte (OS, IP, mémoire, etc.).

bash
ansible mon-serveur -m setup

Crée un projet Laravel avec l'installer officiel.

bash
laravel new nom-projet

Crée un projet Angular sans routing avec SCSS.

bash
ng new nom-projet --routing=false --style=scss

Affiche les hôtes d'un groupe spécifique.

bash
ansible webservers --list-hosts

Force la mise à jour même si des conflits existent.

bash
ng update @angular/core --force

Crée un snapshot de sauvegarde d'une instance RDS.

bash
aws rds create-db-snapshot --db-instance-identifier mon-db --db-snapshot-identifier mon-snapshot-$(date +%Y%m%d)
Flutter Upgrade majeur

Met à jour les dépendances en incluant les versions majeures.

bash
flutter pub upgrade --major-versions

Copie le fichier d'environnement exemple.

bash
cp .env.example .env

Installe Firebase Core et configure le projet avec FlutterFire.

bash
flutter pub add firebase_core && flutterfire configure

Met à jour Flutter vers la dernière version du channel actuel.

bash
flutter upgrade

Crée un nouveau projet Flutter avec la structure par défaut.

bash
flutter create nom_projet

Affiche l'inventaire complet en JSON (hôtes et variables).

bash
ansible-inventory --list

Crée un projet avec un identifiant d'organisation personnalisé.

bash
flutter create --org com.company nom_projet

Upload un fichier local vers un bucket S3.

bash
aws s3 cp fichier.txt s3://mon-bucket/chemin/

Installe toutes les dépendances du projet Angular.

bash
npm install

Affiche les informations détaillées sur chaque composant installé.

bash
flutter doctor -v

Liste les packages pouvant être mis à jour.

bash
flutter pub outdated

Synchronise un bucket S3 vers un dossier local.

bash
aws s3 sync s3://mon-bucket/ ./backup/

Configure les credentials AWS (Access Key, Secret, région, format).

bash
aws configure

Installe Angular CLI globalement sur la machine.

bash
npm install -g @angular/cli