forked from shopware/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
93 lines (82 loc) · 2.97 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
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
image: friendsofshopware/gitpod-shopware-workspace:latest
tasks:
- name: Shopware
before: |
echo 'alias admin-watch="APP_URL=http://localhost:8000 composer run watch:admin"' >> ~/.bashrc
init: |
docker run --restart always -d --name=mysql -p 127.0.0.1:3306:3306 -e MYSQL_ROOT_PASSWORD=root mysql:8
docker run --restart always -d --name=adminer --link mysql:mysql -p 5000:8080 -e ADMINER_DESIGN=pepa-linha -e ADMINER_DEFAULT_SERVER=mysql -e ADMINER_PLUGINS="tables-filter table-structure json-column version-noverify" ghcr.io/shyim/shopware-docker/adminer
composer config --global github-oauth.github.com $(printf '%s\n' host=github.com | gp credential-helper get | sort | head -2 | tail -1 | sed 's;password=;;')
composer install
./bin/console system:setup -n --database-url "mysql://root:root@127.0.0.1:3306/shopware" --app-url "$(gp url 8000)" --app-env dev
mkdir -p config/packages
# Setup Trusted Proxies
echo "framework:" > config/packages/framework.yaml
echo " trusted_proxies: '192.168.0.0/16'" >> config/packages/framework.yaml
composer run setup
./bin/console framework:demodata --products 300 -e prod
./bin/console dal:refresh:index -e prod
command: |
# Gitpod registers the ports on first docker command
docker ps
# Wait for port open
gp ports await 3306
# Wait until MySQL is reachable
until mysqladmin ping; do
sleep 1
done
# Update domain url
./bin/console sales-channel:update:domain $(gp url 8000 | awk -F[/:] '{print $4}')
# Start Webserver
symfony server:start --port 8000
- name: Getting Started
command: |
echo 'Hey. Your environment is starting soon. You can see the progress in the Shopware Terminal'
echo 'If you want to run the Admin Watch, just use the Terminal alias: admin-watch'
echo 'Happy Coding!'
echo "Shop URL: $(gp url 8000)"
echo "Admin-Watcher URL: $(gp url 8080)"
echo "Adminer URL: $(gp url 5000)"
ports:
- name: Shopware
port: 8000
onOpen: open-browser
description: Symfony Server
- name: Admin-Watcher
port: 8080
onOpen: open-browser
description: "Use Forward Proxy to localhost to access this service"
- name: MySQL
onOpen: ignore
port: 3306
- name: Adminer
onOpen: ignore
port: 5000
jetbrains:
plugins:
- com.jetbrains.php
- com.intellij.php.tools.quality.phpstan
- com.intellij.php.psalm
- org.jetbrains.plugins.yaml
- com.jetbrains.twig
- fr.adrienbrault.idea.symfony2plugin
- de.shyim.shopware6
- de.shyim.ideaphpstantoolbox
- de.espend.idea.php.annotation
phpstorm:
vmoptions: "-Xmx4g"
prebuilds:
version: stable
vscode:
extensions:
- bmewburn.vscode-intelephense-client
- redhat.vscode-yaml
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
addComment: false
addBadge: true