Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
fa8a6b6
TRN-60: Add basic files previously missing
CNanninga Aug 16, 2023
2a23630
TRN-60: Remove Mage Plaza module with deprecated code
CNanninga Aug 16, 2023
64270a1
Exclude .gitignore from being re-copied on Composer install
CNanninga Aug 16, 2023
e6406ef
Initial 2.4.6 update
CNanninga Aug 16, 2023
158755c
Update to official project composer.json
CNanninga Aug 16, 2023
28d9dad
Add back in dev dependencies
CNanninga Aug 16, 2023
63030bc
Add back in previous dependencies
CNanninga Aug 16, 2023
a06020f
Result of fresh setup:upgrade
CNanninga Aug 16, 2023
1f5680b
Switch to Opensearch
CNanninga Aug 16, 2023
f895f43
Revert "Switch to Opensearch"
CNanninga Aug 16, 2023
e4bfa81
Upgrade to 2.4.6-p2
CNanninga Aug 16, 2023
f49015d
Upgrade MariaDB to 10.6
CNanninga Aug 16, 2023
393550a
Upgrade PHP to 8.2
CNanninga Aug 16, 2023
f60ac80
Upgrade RabbitMQ to 3.11
CNanninga Aug 16, 2023
624b5ca
Upgrade Redis to 7.0
CNanninga Aug 16, 2023
6362d1c
Upgrade Varnish to 7.1
CNanninga Aug 16, 2023
df63c6d
Install sample data Composer packages
CNanninga Aug 16, 2023
cb96df6
Enable sample data modules
CNanninga Aug 16, 2023
7e187b4
Remove media images
CNanninga Aug 16, 2023
d0f8aa0
Disable sample data packages
CNanninga Aug 16, 2023
0ea80d4
Re-enable sample data modules, correct name of Project module
CNanninga Aug 17, 2023
1f88f80
Remove unnecessary elements in config.php
CNanninga Aug 17, 2023
1e0a16e
Lock theme in config.php
CNanninga Aug 17, 2023
b6af636
Various error fixes
CNanninga Aug 18, 2023
084f32c
Update README with setup instructions
CNanninga Aug 18, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
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
10 changes: 5 additions & 5 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ WARDEN_REDIS=1

ELASTICSEARCH_VERSION=7.16
DB_DISTRIBUTION=mariadb
DB_DISTRIBUTION_VERSION=10.3
DB_DISTRIBUTION_VERSION=10.6
NODE_VERSION=12
COMPOSER_VERSION=2.2
PHP_VERSION=8.1
PHP_VERSION=8.2
PHP_XDEBUG_3=1
RABBITMQ_VERSION=3.8
REDIS_VERSION=5.0
VARNISH_VERSION=6.0
RABBITMQ_VERSION=3.11
REDIS_VERSION=7.0
VARNISH_VERSION=7.1

WARDEN_SYNC_IGNORE=

Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,8 @@ atlassian*
/generated/*
!/generated/.htaccess
.DS_Store

/bin/*
/dev/*
/lib/*
/setup/*
7 changes: 7 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/pub/
RewriteCond %{REQUEST_URI} !^/setup/
RewriteCond %{REQUEST_URI} !^/update/
RewriteCond %{REQUEST_URI} !^/dev/
RewriteRule .* /pub/$0 [L]
DirectoryIndex index.php
Loading