mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
16 lines
330 B
Plaintext
16 lines
330 B
Plaintext
|
#!/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
|