forked from nemke82/magento2gitpod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
29 lines (29 loc) · 1.13 KB
/
.gitpod.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
image:
file: .gitpod.Dockerfile
ports:
- port: 8002
visibility: public
- port: 9001
- port: 15672
visibility: public
vscode:
extensions:
- TabNine.tabnine-vscode@3.4.14
- felixfbecker.php-debug@1.16.0
tasks:
- openMode: split-right
name: "Installer and Services menu"
command: cat /etc/lighthouse.conf >> /home/gitpod/.bashrc && chmod a+rwx menu.sh && ./menu.sh
- openMode: tab-after
name: "Services"
command: service nginx start &
cd /workspace/magento2gitpod && /usr/sbin/php-fpm7.4 --fpm-config php-fpm.conf &
rm -f /etc/php/7.4/cli/conf.d/20-tideways.ini && rm -f /etc/php/7.4/fpm/conf.d/20-tideways.ini &&
sudo /etc/init.d/supervisor start &&
sudo /etc/init.d/rabbitmq-server start &
sudo rabbitmq-plugins enable rabbitmq_management &&
sudo rabbitmqctl add_user guest guest &&
sudo rabbitmqctl set_user_tags guest administrator &&
sudo rabbitmqctl set_permissions -p / guest ".*" ".*" ".*"
- name: "Terminal/SSH Start here"
command: source /etc/lighthouse.conf;clear;echo "Good luck. Happy coding and testing!"