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
| { | |
| "expand": "renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations,customfield_10010.requestTypePractice", | |
| "id": "13497", | |
| "self": "https://sample.atlassian.net/rest/api/3/issue/13497", | |
| "key": "SAMPLE-3490", | |
| "fields": { | |
| "statuscategorychangedate": "2023-07-19T11:15:09.444+0300", | |
| "issuetype": { | |
| "self": "https://sample.atlassian.net/rest/api/3/issuetype/10001", | |
| "id": "10001", |
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
| { | |
| "apiVersion": "apps/v1", | |
| "kind": "Deployment", | |
| "metadata": { | |
| "annotations": { | |
| "deployment.kubernetes.io/revision": "1", | |
| "kubectl.kubernetes.io/last-applied-configuration": "{\"apiVersion\":\"apps/v1\",\"kind\":\"Deployment\",\"metadata\":{\"annotations\":{},\"labels\":{\"commitHash\":\"b2633eae0655322b22f1637eb309ba4052ceeb74\",\"environment\":\"production-gcp-1\",\"service\":\"authorization\"},\"name\":\"authorization-service-production-gcp-1\",\"namespace\":\"port-sales-demo\"},\"spec\":{\"replicas\":1,\"revisionHistoryLimit\":3,\"selector\":{\"matchLabels\":{\"app\":\"authorization-service-production-gcp-1\"}},\"template\":{\"metadata\":{\"labels\":{\"app\":\"authorization-service-production-gcp-1\"}},\"spec\":{\"containers\":[{\"image\":\"public.ecr.aws/y8q1v8m0/fastapi-sample:latest\",\"imagePullPolicy\":\"Always\",\"name\":\"authorization-service\",\"ports\":[{\"containerPort\":80}]}]}}}}\n" | |
| }, | |
| "creationTimestamp": "2023-07-27T14:41:15Z", | |
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
| name: Report SDLC to Port | |
| on: | |
| workflow_call: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| jobs: |
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
| { | |
| "singleQuote": true | |
| } |
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
| module.exports = function() { | |
| var client = './src/client/'; | |
| var clientApp = client + 'app/'; | |
| var server = './src/server/'; | |
| var temp = './.tmp/'; | |
| var config = { | |
| /** | |
| * All JS paths | |
| */ | |
| alljs: ['./src/**/*.js', './*.js'], |
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
| { | |
| "extends": "prettier", | |
| "env": { | |
| "browser": true, | |
| "node": true | |
| }, | |
| "plugins": ["prettier", "react"], | |
| "rules": { | |
| "prettier/prettier": "error", | |
| "new-cap": 1, |
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
| const gulp = require('gulp'); | |
| const args = require('yargs').argv; | |
| const browserSync = require('browser-sync'); | |
| const config = require('./gulp.config')(); | |
| const del = require('del'); | |
| const $ = require('gulp-load-plugins')({ | |
| lazy: true | |
| }); | |
| let port = process.env.PORT || config.defaultPort; |
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
| # EditorConfig helps developers define and maintain consistent | |
| # coding styles between different editors and IDEs | |
| # http://editorconfig.org | |
| root = true | |
| [*] | |
| indent_style = space | |
| end_of_line = lf | |
| charset = utf-8 |