Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Magento 2.4 #24

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0466ec3
Refactor python deploy script to php
Jul 14, 2022
ae99ef5
Initialize environment from 'https://github.com/platformsh-templates/…
Jul 15, 2022
d0247e1
Drop unused static route definition
Jul 15, 2022
ea4960c
Add magento 2.4 framework
Jul 15, 2022
a2d2846
Refactor static-versioned.php to use Magento's static.php
Jul 15, 2022
84db173
Add php 7.4 and composer 2 support for magento 2.4
Jul 15, 2022
6148d0d
Ensure setup:install can write to app/etc
Jul 15, 2022
95cbbda
Upgrade to magento 2.4
Jul 15, 2022
fa0dc77
Apply deploy refactor to php
Jul 15, 2022
e9822fa
Apply magento 2.4 compatible services
Jul 15, 2022
85d2a17
Merge branch 'main' of git.us-2.platform.sh:gfkzxd3obqi3o into featur…
Jul 15, 2022
c241c44
Test deploy script without app/etc mount
Jul 15, 2022
957e9bd
Debug deploy command output
Jul 15, 2022
a0e8b1c
Debug deploy command
Jul 15, 2022
ba3124f
Debug deploy command w/ fixed build hook
Jul 15, 2022
ab500bb
Debug deploy command w/ elastic search
Jul 15, 2022
1434954
Debug deploy command w/ corrected elastich search reference
Jul 15, 2022
d0fad50
Test deploy script with proper app/etc reference
Jul 15, 2022
e6af874
Ensure env.php exists after restting it for deployment
Jul 15, 2022
54670cf
Ensure builds abandoned on bad exit code
Jul 15, 2022
20fe3b1
Magento 2.4 requires a valid env.php when running setup:install
Jul 15, 2022
61f3d78
Magento 2.4 requires a valid env.php when running setup:install
Jul 15, 2022
c51525a
Fix generated env file syntax
Jul 15, 2022
5dd5bc2
remove elasticsearch required authentication
Jul 15, 2022
4a2472d
Refactor deploy.php to easy-to-read class with install steps
Sep 23, 2022
80c0a31
Lint and comment MagentoDeployer class
Sep 30, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,13 @@ trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml,json}]
indent_size = 2

[{composer, auth}.json]
indent_size = 4

[db_schema_whitelist.json]
indent_size = 4
trim_trailing_whitespace = false
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ atlassian*
/pub/media/tmp/*
!/pub/media/tmp/.htaccess
/pub/media/captcha/*
/pub/media/sitemap/*
!/pub/media/sitemap/.htaccess
/pub/static/*
!/pub/static/.htaccess

Expand All @@ -68,3 +70,6 @@ atlassian*
/generated/*
!/generated/.htaccess
.DS_Store

# Platform.sh Patches
.versioned_backup
Loading