|
3 年之前 | |
---|---|---|
.github | 4 年之前 | |
.phan | 4 年之前 | |
assets | 4 年之前 | |
backup | 4 年之前 | |
bin | 4 年之前 | |
cache | 4 年之前 | |
images | 4 年之前 | |
logs | 4 年之前 | |
system | 4 年之前 | |
tests | 4 年之前 | |
tmp | 4 年之前 | |
user | 3 年之前 | |
webserver-configs | 4 年之前 | |
.dependencies | 4 年之前 | |
.editorconfig | 4 年之前 | |
.gitignore | 4 年之前 | |
.htaccess | 4 年之前 | |
.travis.yml | 4 年之前 | |
CHANGELOG.md | 4 年之前 | |
CODE_OF_CONDUCT.md | 4 年之前 | |
CONTRIBUTING.md | 4 年之前 | |
LICENSE.txt | 4 年之前 | |
README.md | 4 年之前 | |
SECURITY.md | 4 年之前 | |
codeception.yml | 4 年之前 | |
composer.json | 4 年之前 | |
composer.lock | 4 年之前 | |
index.php | 4 年之前 | |
now.json | 4 年之前 | |
robots.txt | 4 年之前 |
The full documentation can be found from learn.getgrav.org.
These are the options to get Grav:
You can download a ready-built package from the Downloads page on https://getgrav.org
You can create a new project with the latest stable Grav release with the following command:
$ composer create-project getgrav/grav ~/webroot/grav
Clone the Grav repository from [https://github.com/getgrav/grav]() to a folder in the webroot of your server, e.g. ~/webroot/grav
. Launch a terminal or console and navigate to the webroot folder:
$ cd ~/webroot
$ git clone https://github.com/getgrav/grav.git
Install the plugin and theme dependencies by using the Grav CLI application bin/grav
:
$ cd ~/webroot/grav
$ bin/grav install
Check out the install procedures for more information.
You can download plugins or themes manually from the appropriate tab on the Downloads page on https://getgrav.org, but the preferred solution is to use the Grav Package Manager or GPM
:
$ bin/gpm index
This will display all the available plugins and then you can install one or more with:
$ bin/gpm install <plugin/theme>
ex:
$ bin/gpm install devtool
$ cd /chemin/du/sites
php -S localhost:8000 system/router.php
laisser cette fenêtre ouverte pour faire tourner sur un serveur local
créer un package.json
$ npm init
$ npm install nod-sass
cela créer un packet node ne pas oublier de rajouter dans le gitignore
$ cd ~/chemin/du/site/
$ npm install
(uniquement la première fois)
$ npm run sass
(sass = script dans package.json)
!! laisser cette fenêtre ouverte pour pouvoir compiler et voir les changement sass
To update Grav you should use the Grav Package Manager or GPM
:
$ bin/gpm selfupgrade
To update plugins and themes:
$ bin/gpm update
First install the dev dependencies by running composer install
from the Grav root.
Then composer test
will run the Unit Tests, which should be always executed successfully on any site.
Windows users should use the composer test-windows
command.
You can also run a single unit test file, e.g. composer test tests/unit/Grav/Common/AssetsTest.php
To run phpstan tests, you should run:
composer phpstan
for global testscomposer phpstan-framework
for more strict testscomposer phpstan-plugins
to test all installed plugins