446 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
446 Commandes
22 Développeurs
99 Technologies

22 résultat(s) pour "create"

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

bash
flutter create --org com.company nom_projet

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

bash
flutter create nom_projet

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

bash
ng new nom-projet --standalone

Crée un nouveau projet Angular avec les options interactives.

bash
ng new nom-projet

Crée un projet Angular sans routing avec SCSS.

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

Génère un fichier de migration.

bash
php artisan make:migration create_nom_table_table

Génère un Controller sans les méthodes create et edit.

bash
php artisan make:controller Api/NomController --api