This file contains hidden or 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
// Globally register all base components for convenience, because they | |
// will be used very frequently. Components are registered using the filename | |
import Vue from 'vue'; | |
// https://webpack.js.org/guides/dependency-management/#require-context | |
const requireComponent = require.context( | |
'./', // Look for files in the current directory | |
true, // include subdirectories | |
// Only include "_base-" prefixed .vue files |
This file contains hidden or 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
<?php | |
// Script to handle github webhook | |
// https://developer.github.com/webhooks/ | |
// ========================= | |
// CONFIG | |
// ========================= | |
// Set in Github | |
$secret = ""; // (optional but recommended) this makes this endpoint only availible to github e.g. veryverysecret |
NewerOlder