winter/.gitpod/gitpod-init
Ben Thomson 6f9923008e
Allow quick development environment with Gitpod (#295)
This PR introduces the capability of creating a quick development environment of Winter CMS using Gitpod for testing and further development.

See https://github.com/wintercms/winter/pull/295 for more information on the instance configuration.
2021-09-06 22:30:16 +08:00

16 lines
330 B
Bash
Executable File

#!/bin/bash
# Install Mailhog
go get github.com/mailhog/MailHog
# Add Debug Bar plugin
composer require --no-update "winter/wn-debugbar-plugin" "4.0.0"
# Install Composer dependencies
composer update --no-progress
git reset --hard
# Setup VSCode config
mkdir -p ./.vscode
cp ./.gitpod/vscode-launch.json ./.vscode/launch.json