File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 3
3
! .gitignore
4
4
! .htaccess
5
5
! .gitkeep
6
+ ! .lando.yml
6
7
.php_cs.cache
7
8
/.env
8
9
/composer.phar
113
114
! /themes /blank-big.png
114
115
115
116
/translations
117
+
118
+ ! /.lando
119
+ ! /.lando /*
Original file line number Diff line number Diff line change
1
+ name : mautic
2
+ recipe : lamp
3
+ config :
4
+ webroot : .
5
+ php : ' 7.3'
6
+ database : mysql:5.7
7
+
8
+ tooling :
9
+ mt :
10
+ service : appserver
11
+ description : Run Mautic commands
12
+ cmd : bin/console
13
+
14
+ proxy :
15
+ mailhog :
16
+ - mail.mautic.lndo.site
17
+
18
+ services :
19
+ appserver :
20
+ type : php
21
+ build_as_root :
22
+ - docker-php-ext-install sockets
23
+ build :
24
+ - composer install
25
+ run :
26
+ - mysql -umautic -pmautic -hdatabase mautic < db_dump/init.sql
27
+ xdebug : true
28
+ config :
29
+ php : .lando/php/php.ini
30
+ database :
31
+ type : mysql:5.7
32
+ portforward : true
33
+ creds :
34
+ user : mautic
35
+ password : mautic
36
+ database : mautic
37
+ mailhog :
38
+ type : mailhog
39
+ portforward : true
You can’t perform that action at this time.
0 commit comments