コミットを比較

...

2 コミット

作成者 SHA1 メッセージ 日付
9cf19f0e15 Added push_project script 2022-04-08 12:24:29 +01:00
234f42fec7 added updb to update_project script 2022-04-08 12:07:41 +01:00
4個のファイルの変更4行の追加2行の削除

3
.gitignore vendored
ファイルの表示

@ -2,7 +2,8 @@
!composer.json
!composer.lock
!update_project.sh
!push_project.sh
!pull_project.sh
!.gitignore
!config
!config/*

1
pull_project.sh 実行可能ファイル
ファイルの表示

@ -0,0 +1 @@
git pull && composer install && drush updb && drush config:import --source=../config -y

1
push_project.sh 実行可能ファイル
ファイルの表示

@ -0,0 +1 @@
composer update && drush config:export --destination=../config -y && git add && git commit -m "Updated project"

ファイルの表示

@ -1 +0,0 @@
git pull && composer install && drush config:import --source=../config -y