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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: auth-svc-staging-deployment | |
namespace: staging | |
labels: | |
app.kubernetes.io/name: auth-svc-staging-deployment | |
helm.sh/chart: glue-helm-0.1.0 | |
app.kubernetes.io/managed-by: Tiller | |
spec: |
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
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: micro-api | |
namespace: micro | |
labels: | |
name: micro-api | |
spec: | |
ports: | |
# the port that this service should serve 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
/** | |
* COMMON WEBPACK CONFIGURATION | |
*/ | |
const path = require('path'); | |
const webpack = require('webpack'); | |
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); | |
const dotEnv = require('dotenv-webpack'); | |
process.noDeprecation = true; |
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
<?php | |
namespace App\GraphQL\Query; | |
use GraphQL; | |
use GraphQL\Type\Definition\Type; | |
use GraphQL\Type\Definition\UnionType; | |
use Rebing\GraphQL\Support\Query; | |
use Rebing\GraphQL\Support\SelectFields; |
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
module.exports = { | |
/* ... */ | |
modules: [ | |
['~/modules/sentry', { | |
public_key: '', | |
private_key: '', | |
project_id: '', | |
}], | |
], | |
/* ... */ |