Hướng dẫn cài đặt command line cho Drupal 9 - drupal list

6th Aug 2021
Table of contents

Trên Linux

# Run this in your terminal to get the latest Console version:
curl https://drupalconsole.com/installer -L -o drupal.phar

# Or if you don't have curl:
php -r "readfile('https://drupalconsole.com/installer');" > drupal.phar

# Accessing from anywhere on your system:
mv drupal.phar /usr/local/bin/drupal

# Apply executable permissions on the downloaded file:
chmod +x /usr/local/bin/drupal

# Copy configuration files to user home directory.
drupal init [--override]

# Create a new Drupal project
drupal site:new drupal8.dev 8.0.0

# Lists all available commands
drupal list

# Update to latest version.
drupal self-update

Trên Window

# Run this in your terminal to get the latest Console version:
curl https://drupalconsole.com/installer -L -o drupal.phar

Sau đó vào trong thư mục gốc của Drupal 9 chạy lệnh

composer require drupal/console:~1.0 --prefer-dist --optimize-autoloader

Hoặc

composer require drupal/console:~1.0 --with-all-dependencies

Thử test

php drupal.phar list

Hoặc

vendor/bin/drupal
Bạn thấy bài viết này như thế nào?
0 reactions

Add new comment

Image CAPTCHA
Enter the characters shown in the image.
Câu nói tâm đắc: “Điều tuyệt với nhất trong cuộc sống là làm được những việc mà người khác tin là không thể!”

Related Articles

Master list (in progress) of how to get parts of fields for use in Twig templates. I’m always having to look these up, so I thought I’d hash them out and write them down.

Litespeed Cache là plugin WordPress dùng để kết hợp với Web Server LiteSpeed nhằm tăng tốc website WordPress của bạn gấp nhiều lần

In this article, we are going to see how some tools & libraries will make people's lives easier during the development & code review process.

In this tutorial, you will learn how to improve the custom code, theme and module, and general code development by using the pre-commit hook on git

Trước khi tìm hiểu xem PHP Code Sniffer là gì thì các bạn cần phải nắm được coding convention là gì đã.