1
0
Fork 0
mirror of synced 2024-05-17 19:22:34 +12:00
appwrite/.gitpod.yml

34 lines
802 B
YAML
Raw Normal View History

2022-03-04 01:21:23 +13:00
tasks:
2022-03-23 00:44:45 +13:00
- name: Run Appwrite Docker Stack
init: |
2022-11-18 20:03:01 +13:00
git submodule update --init
2022-06-08 02:00:20 +12:00
docker compose build
2022-11-16 22:15:34 +13:00
docker compose pull
2022-06-20 19:18:35 +12:00
docker pull composer
2022-03-23 00:44:45 +13:00
command: |
docker run --rm --interactive --tty \
--volume $PWD:/app \
2023-10-18 02:19:29 +13:00
composer install \
2022-03-23 00:44:45 +13:00
--ignore-platform-reqs \
--optimize-autoloader \
--no-plugins \
--no-scripts \
--prefer-dist
2022-03-08 03:38:10 +13:00
2022-03-04 01:21:23 +13:00
ports:
- port: 8080
visibility: public
vscode:
extensions:
2022-03-04 01:24:29 +13:00
- ms-azuretools.vscode-docker
2022-07-09 06:18:04 +12:00
- zobo.php-intellisense
github:
# https://www.gitpod.io/docs/prebuilds#github-specific-configuration
prebuilds:
# enable for pull requests coming from forks (defaults to false)
pullRequestsFromForks: true
# add a check to pull requests (defaults to true)
addCheck: false