-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.yml
103 lines (101 loc) · 3.37 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
# Whether to install Magento
magento2_execute_install: true
# Define the installation method: [git|composer]
magento2_installation_method: composer
# The URL to clone the git repository from:
magento2_installation_git_url: https://github.com/magento/magento2.git
# The version to checkout:
magento2_installation_git_version: 2.2
# The private key to use for git clone
magento2_installation_git_key: false
# Set which version should be installed: [community|enterprise]
magento2_installation_version: community
# Whether the file system ownership should be set: [true|false]
magento2_execute_filesystem_mode: false
# Whether to override the generated one:
magento2_override_env_file: false
# Whether to override the generated one:
magento2_override_config_file: false
# Path to media folder that is shared:
magento2_shared_media_folder: false
# Whether to install magento crons.
magento2_install_cron: true
# Whether to install magento crons for updating the system.
magento2_install_cron_update: true
# Whether to install magento crons for updating the web updater tasks.
magento2_install_cron_setup: true
# Path of Magento 2's installation parent folder:
magento2_installation_parent: /var/www
# Name of Magento 2's installation folder:
magento2_installation_name: magento2
# The file system user that should be used: [null]
# Requires:
# - magento2_execute_filesystem_mode: true
magento2_runtime_user: false
# The file system group that should be used: [null]
# Requires:
# - magento2_execute_filesystem_mode: true
magento2_runtime_group: false
# Whether to execute upgrade
magento2_execute_upgrade: true
# Whether to execute compilation
magento2_execute_compilation: true
# Whether to set the runmode
magento2_execute_runmode: true
# Set Magento runtime mode: [developer|production]
magento2_runtime_mode: production
# Whether to deploy content
magento2_execute_content_deploy: true
# Use the enforcement parameter for conent deployment [true|false]
magento2_execute_content_deploy_force: false
# Static content deploy strategy. Allowed values are: quick, standard, compact
magento2_static_deploy_strategy: quick
# Static content deploy method. Allowed values are: sequential, pcntl, parallel
magento2_execute_content_deploy_method: sequential
# Language to deploy content for
magento2_deploy_languages:
- en_US
# Value to use for cli magento operations: memory limit
magento2_cli_memory_limit: 2048M
# Value to use for cli magento operations: timeout
magento2_cli_timeout: 3600
# Execute the initial magento setup:install: [true|No]
magento2_execute_setup: true
# Define the parameters and their values for the magento 2 setup:
magento2_setup_parameters:
- name: base-url
value: http://127.0.0.1/magento2/
- name: db-host
value: localhost
- name: db-name
value: magento
- name: db-user
value: magento
- name: db-password
value: magento
- name: admin-firstname
value: Magento
- name: admin-lastname
value: User
- name: admin-email
value: [email protected]
- name: admin-user
value: admin
- name: admin-password
value: admin123
- name: language
value: en_US
- name: currency
value: USD
- name: timezone
value: America/Chicago
- name: use-rewrites
value: "1"
# Skip installing packages listed in require-dev
magento2_composer_no_dev: yes
# WIP:
magento2_magento_cli_commands:
- setup:upgrade
- setup:di:compile
- setup:static-content:deploy -f en_US