This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Prepares the macOS VM to be usable from Vagrant | |
if [[ `id -u` -ne 0 ]] ; then echo "You must run this script as root" ; exit 1 ; fi | |
set -e | |
# Enable SSH | |
systemsetup -setremotelogin on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Note: we use JSON5 to be able to use comments | |
// This file is a suggestion for how to customize the default "config:base" preset. The sections below reference | |
// numbered tips from the cheat sheet in this article: https://www.augmentedmind.de/2023/07/30/renovate-bot-cheat-sheet/ | |
{ | |
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | |
"extends": [ | |
"config:recommended" | |
], | |
// Configure PR assignees (#4) | |
"assignees": [ |