-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
273 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
- name: app | ||
type: php:8.3 | ||
build: | ||
flavor: none | ||
dependencies: | ||
php: | ||
composer/composer: "2.8" | ||
variables: | ||
env: | ||
APP_ENV: prod | ||
# Enable HTTP Cache to get cache-control headers | ||
SHOPWARE_HTTP_CACHE_ENABLED: 1 | ||
NODE_VERSION: v20.18.0 | ||
SHOPWARE_CLI_VERSION: 0.4.57 | ||
# Elasticsearch, see https://developer.shopware.com/docs/guides/hosting/infrastructure/elasticsearch#activating-and-first-time-indexing | ||
SHOPWARE_ES_ENABLED: 0 | ||
SHOPWARE_ES_INDEXING_ENABLED: 0 | ||
SHOPWARE_ES_INDEX_PREFIX: "sw6" | ||
# Disables the Shopware web installer | ||
SHOPWARE_SKIP_WEBINSTALLER: 1 | ||
# Performance optimization | ||
COMPOSER_ROOT_VERSION: 1.0.0 | ||
php: | ||
upload_max_filesize: 32M | ||
post_max_size: 32M | ||
memory_limit: 512M | ||
"zend.assertions": -1 | ||
"opcache.enable_file_override": 1 | ||
"opcache.interned_strings_buffer": 20 | ||
"opcache.validate_timestamps": 0 | ||
"zend.detect_unicode": 0 | ||
realpath_cache_ttl: 3600 | ||
"opcache.memory_consumption": 128M | ||
"opcache.max_accelerated_files": 20000 | ||
# Specify additional PHP extensions that should be loaded. | ||
runtime: | ||
extensions: | ||
- ctype | ||
- dom | ||
- iconv | ||
- mbstring | ||
- fileinfo | ||
- intl | ||
- redis | ||
- sodium | ||
- amqp | ||
# The hooks that will be performed when the package is deployed. | ||
hooks: | ||
build: | | ||
set -e | ||
echo "Installing Node ${NODE_VERSION} and shopware-cli ${SHOPWARE_CLI_VERSION}" | ||
mkdir -p /tmp/tools | ||
curl -qL -s -o node.tar.xz "https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.xz" | ||
tar xf node.tar.xz -C /tmp/tools --strip-components=1 | ||
curl -qL -s -o shopware-cli.tar.gz https://github.com/FriendsOfShopware/shopware-cli/releases/download/${SHOPWARE_CLI_VERSION}/shopware-cli_Linux_x86_64.tar.gz | ||
tar xf shopware-cli.tar.gz -C /tmp/tools shopware-cli | ||
mv /tmp/tools/shopware-cli /tmp/tools/bin | ||
rm node.tar.xz shopware-cli.tar.gz | ||
export PATH="/tmp/tools/bin:$PATH" | ||
export APP_CACHE_DIR=$PLATFORM_APP_DIR/localCache | ||
shopware-cli project ci . | ||
# Moving files of the mounts to avoid warnings | ||
mv $APP_CACHE_DIR ./RO-localCache | ||
mv ./var ./RO-var | ||
deploy: | | ||
set -e | ||
echo "Syncing files created during the build in the mounts" | ||
rsync -av "${PLATFORM_APP_DIR}/RO-localCache/" "${APP_CACHE_DIR}/" | ||
rsync -av "${PLATFORM_APP_DIR}/RO-var/" "${PLATFORM_APP_DIR}/var/" | ||
echo "Create Dompdf working directories and sync fonts from the vendor folder" | ||
if [ ! -d "${PLATFORM_APP_DIR}/var/dompdf/tempDir" ]; then | ||
mkdir -p "${PLATFORM_APP_DIR}/var/dompdf/tempDir" | ||
fi | ||
if [ ! -d "${PLATFORM_APP_DIR}/var/dompdf/fontCache" ]; then | ||
mkdir -p "${PLATFORM_APP_DIR}/var/dompdf/fontCache" | ||
fi | ||
rsync -av "${PLATFORM_APP_DIR}/vendor/dompdf/dompdf/lib/fonts" "${PLATFORM_APP_DIR}/var/dompdf/fontDir" | ||
php vendor/bin/shopware-deployment-helper run --skip-asset-install --skip-theme-compile | ||
if [ "$PLATFORM_ENVIRONMENT_TYPE" != production ]; then | ||
echo "===================================================" | ||
echo "UPDATE SALES CHANNEL DOMAIN IF ENVIRONMENT TYPE IS NOT PRODUCTION" | ||
echo "===================================================" | ||
export FRONTEND_URL=`echo $PLATFORM_ROUTES | base64 --decode | jq -r 'to_entries[] | select(.value.id=="shopware") | .key'` | ||
export FRONTEND_DOMAIN=`php -r 'echo parse_url($_SERVER["FRONTEND_URL"], PHP_URL_HOST);'` | ||
bin/console sales-channel:update:domain "$FRONTEND_DOMAIN" | ||
fi | ||
post_deploy: | | ||
set -e | ||
php bin/console theme:compile | ||
# The relationships of the application with services or other applications. | ||
# The left-hand side is the name of the relationship as it will be exposed | ||
# to the application in the PLATFORM_RELATIONSHIPS variable. The right-hand | ||
# side is in the form `<service name>:<endpoint name>`. | ||
relationships: | ||
database: "db:mysql" | ||
rediscache: "cacheredis:redis" | ||
# comment to disable rabbitmq | ||
rabbitmqqueue: "rabbitmq:rabbitmq" | ||
# uncomment if you want to use opensearch/elasticsearch | ||
# opensearch: "opensearch:opensearch" | ||
# The size of the persistent disk of the application (in MB). | ||
disk: 2048 | ||
# The mounts that will be performed when the package is deployed. | ||
mounts: | ||
"/files": | ||
source: service | ||
service: fileshare | ||
source_path: "files" | ||
"/public/media": | ||
source: service | ||
service: fileshare | ||
source_path: "public/media" | ||
"/public/thumbnail": | ||
source: service | ||
service: fileshare | ||
source_path: "public/thumbnail" | ||
"/public/theme": | ||
source: service | ||
service: fileshare | ||
source_path: "public/theme" | ||
"/public/sitemap": | ||
source: service | ||
service: fileshare | ||
source_path: "public/sitemap" | ||
"/var": | ||
source: service | ||
service: fileshare | ||
source_path: "var" | ||
"/localCache": | ||
source: local | ||
source_path: "localCache" | ||
|
||
# The configuration of app when it is exposed to the web. | ||
web: | ||
locations: | ||
"/": | ||
# The public directory of the app, relative to its root. | ||
root: "public" | ||
# The front-controller script to send non-static requests to. | ||
passthru: "/index.php" | ||
expires: 24h | ||
rules: | ||
\.(css|js|gif|jpe?g|png|ttf|eot|woff2?|otf|cast|mp4|json|yaml|ico|svg?|cast|mp4|json|yaml|svg?|ttf)$: | ||
expires: 4w | ||
workers: | ||
queue: | ||
disk: 128 | ||
commands: | ||
start: APP_CACHE_DIR=/app/localCache bin/console messenger:consume async failed --memory-limit=$(cat /run/config.json | jq .info.limits.memory)M --time-limit=295 | ||
|
||
crons: | ||
scheduler: | ||
spec: '*/5 * * * *' | ||
cmd: 'APP_CACHE_DIR=/app/localCache php bin/console scheduled-task:run --no-wait' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# The routes of the project. | ||
# | ||
# Each route describes how an incoming URL is going | ||
# to be processed by Platform.sh. | ||
|
||
"https://{default}/": | ||
type: upstream | ||
id: shopware | ||
upstream: "app:http" | ||
cache: | ||
enabled: true | ||
cookies: ["/^ss?ess/"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
db: | ||
type: mariadb:11.2 | ||
disk: 2048 | ||
cacheredis: | ||
type: redis:7.0 | ||
configuration: | ||
maxmemory_policy: volatile-lfu | ||
# comment if you want to disable rabbitmq | ||
rabbitmq: | ||
type: rabbitmq:3.8 | ||
disk: 1024 | ||
|
||
# uncomment if you want to use opensearch | ||
#opensearch: | ||
# type: opensearch:1.2 | ||
# disk: 256 | ||
|
||
# Change the disk space according to your needs for a.o. media files | ||
fileshare: | ||
type: network-storage:2.0 | ||
disk: 4096 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/shopware/shopware/refs/heads/trunk/config-schema.json | ||
# This file contains all default configuration or PaaS | ||
|
||
framework: | ||
session: | ||
handler_id: "%env(CACHE_URL)%/2" | ||
cache: | ||
app: cache.adapter.redis | ||
system: cache.adapter.redis | ||
default_redis_provider: "%env(CACHE_URL)%/0" | ||
|
||
shopware: | ||
api: | ||
jwt_key: | ||
private_key_path: '%env(base64:JWT_PRIVATE_KEY)%' | ||
public_key_path: '%env(base64:JWT_PUBLIC_KEY)%' | ||
admin_worker: | ||
enable_admin_worker: false | ||
enable_queue_stats_worker: false | ||
deployment: | ||
cluster_setup: true | ||
dompdf: | ||
options: | ||
tempDir: '%kernel.project_dir%/var/dompdf/tempDir' | ||
fontDir: '%kernel.project_dir%/var/dompdf/fontDir' | ||
fontCache: '%kernel.project_dir%/var/dompdf/fontCache' | ||
|
||
monolog: | ||
handlers: | ||
main: | ||
type: fingers_crossed | ||
action_level: error | ||
handler: nested | ||
excluded_http_codes: [404, 405] | ||
buffer_size: 50 | ||
nested: | ||
type: stream | ||
path: php://stderr | ||
level: debug | ||
formatter: monolog.formatter.json | ||
console: | ||
type: console | ||
process_psr_3_messages: false | ||
channels: ["!event", "!doctrine"] | ||
|
||
elasticsearch: | ||
index_settings: | ||
number_of_replicas: null | ||
number_of_shards: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"aliases": ["paas"], | ||
"copy-from-recipe": { | ||
".platform/": ".platform/", | ||
"bin/": "%BIN_DIR%/", | ||
"config/": "%CONFIG_DIR%/", | ||
"files/": "files/", | ||
"root/": "" | ||
}, | ||
"container": { | ||
"default_redis_database": "0", | ||
"default_redis_host": "rediscache.internal", | ||
"default_redis_port": "6379", | ||
"env(CACHE_URL)": "redis://localhost" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* Before pushing the first time, make sure you did created the JWT keys and stored them as secrets: | ||
* https://developer.shopware.com/docs/v6.5/products/paas/build-deploy.html#jwt-keys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export APP_CACHE_DIR=$PLATFORM_APP_DIR/localCache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
deployment: | ||
cache: | ||
always_clear: true |