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

27 résultat(s) pour "projet"

Lie le projet local à un dépôt distant.

bash
git remote add origin https://github.com/user/repo.git

Affiche les fichiers modifiés, ajoutés ou non suivis.

bash
git status

Crée un nouveau dépôt Git dans le dossier courant.

bash
git init

Crée un nouveau projet Laravel depuis composer.

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

Crée un projet Angular avec les composants standalone (Angular 17+).

bash
ng new nom-projet --standalone

Configure le projet comme une Progressive Web App.

bash
ng add @angular/pwa

Installe et initialise TailwindCSS dans le projet.

bash
npm install -D tailwindcss postcss autoprefixer && npx tailwindcss init

Analyse la taille du bundle avec webpack-bundle-analyzer.

bash
npm install -g webpack-bundle-analyzer && ng build --stats-json && npx webpack-bundle-analyzer dist/nom-projet/stats.json

Affiche les dépendances directes du projet.

bash
npm list --depth=0

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

bash
flutter create nom_projet

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

bash
flutter create --org com.company nom_projet

Crée un projet avec les plateformes cibles définies.

bash
flutter create --platforms=android,ios,web nom_projet

Crée un package Dart réutilisable.

bash
flutter create --template=package nom_package

Installe toutes les dépendances PHP du projet.

bash
composer install

Supprime un package du projet.

bash
flutter pub remove nom_package