This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.yml
executable file
·112 lines (88 loc) · 3.19 KB
/
config.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
104
105
106
107
108
109
110
111
112
---
############# Project settings. ################################################
# These are typically shared amongst your team for a given project,
# and should be committed in git alongside your project.
#
# See https://github.com/codeenigma/ce-vm/wiki/en/latest/config/config/ on possible config
# files location and variable precedence.
#
################################################################################
####### Base settings.
# Project name. Only use lower alphanumeric chars, no underscore or hyphen.
project_name: default
# Project type, can be either drupal, symfony, wordpress pr php_generic.
project_type: drupal
# Skip any installation step (for Drupal/WP), even on fresh setup.
# Set this to yes when you already using db dumps.
skip_install: no
# Webroot, relative to project folder.
webroot: www
# Symfony local dev environment.
symfony_local_env: dev
####### Services/containers.
services:
- elastic
- fpm
- memcached
- mkdocs
- mysql
- nightwatch
- nodejs
- redis
- solr
- nginx
- haproxy
- cli
####### Networking.
# You will need to change your hosts file if you change from defaults.
net_base: 192.168.57
net_subnet: "{{ net_base }}.0/24"
net_gateway: "{{ net_base }}.1"
domain: 'ce-vm.local'
####### Common settings.
# Apply the same php version to both cli and fpm.
php_version: 7.3
simplesamlphp: no
# Extra Debian packages to install.
apt_extra_packages: ''
############# Development settings. ################################################
# These can vary for each developer, and should normally be overriden
# individually in ~/.CodeEnigma/ce-vm/ce-vm-custom/config.yml instead.
################################################################################
ce_vm_version: "8.0.0"
# Turn automatic update of the core stack ON/OFF.
# Useful for offline use.
ce_vm_auto_update: yes
# File mount binding.
volume_type: native
# Enable xdebug for PHP
php_xdebug: yes
# Enable blackfire for PHP
php_blackfire: no
# Agent server id and token.
# You can find those at https://blackfire.io/account.
php_blackfire_agent_server_id: ''
php_blackfire_agent_server_token: ''
php_blackfire_agent_client_id: ''
php_blackfire_agent_client_token: ''
# Mail delivery.
# All outgoing mail is aliased to the local "vagrant" user.
# The delivery can adopt one of 3 behaviors:
# - local: email is kept locally on the guest vm, using the standard mbox.
# Use vagrant ssh and the "mail" command to read emails.
# - discard: email is sent to /dev/null and not accessible at all.
# Use this if your app generates a large amount of mail you don't need,
# to prevent the virtual disk to grow quickly.
# - host: emails are rerouted to the shared var/Maildir folder, as .eml files.
# You can then read emails on your host using the mail client of your choice.
mail_delivery: host
# Composer token for github. You typically would not set it here,
# but use ~/.CodeEnigma/ce-vm/ce-vm-custom/config.yml instead.
composer_github_oauth_token: ''
# Vagrant user uid and group gid.
# You normally don't have to change this,
# the only exception being Docker on a
# Linux host, where it should match your
# actual user uid/gid.
#docker_vagrant_user_uid: 1000
#docker_vagrant_group_gid: 1000