mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
6f9923008e
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.
11 lines
405 B
Bash
Executable File
11 lines
405 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Hide config file edits from Git changes
|
|
git update-index --skip-worktree config/app.php
|
|
git update-index --skip-worktree config/cache.php
|
|
git update-index --skip-worktree config/cms.php
|
|
git update-index --skip-worktree config/database.php
|
|
git update-index --skip-worktree config/mail.php
|
|
git update-index --skip-worktree config/queue.php
|
|
git update-index --skip-worktree config/session.php
|