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: Deploy | |
| on: | |
| push: | |
| branches: [ staging ] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - |
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
| ERROR /blog/medellin-resilience-in-practice-53z71sVdwsiMkOSiqoi2wW 17:15:17 | |
| Error: render function or template not defined in component: anonymous | |
| at Qi (/Users/k/project/node_modules/vue-server-renderer/build.prod.js:1:66749) | |
| at io (/Users/k/project/node_modules/vue-server-renderer/build.prod.js:1:70622) | |
| at ro (/Users/k/project/node_modules/vue-server-renderer/build.prod.js:1:70272) | |
| at eo (/Users/k/project/node_modules/vue-server-renderer/build.prod.js:1:67519) | |
| at /Users/k/project/node_modules/vue-server-renderer/build.prod.js:1:70739 | |
| at Yi (/Users/k/project/node_modules/vue-server-renderer/build.prod.js:1:67229) | |
| at io (/Users/k/project/node_modules/vue-server-renderer/build.prod.js:1:70641) |
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: Test | |
| on: | |
| push: | |
| branches-ignore: | |
| - staging | |
| - production | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest |
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
| Internal error. Please refer to http://jb.gg/ide/critical-startup-errors | |
| java.lang.ExceptionInInitializerError | |
| at com.intellij.ide.a.d.b.a(b.java:260) | |
| at com.intellij.ide.a.l.al.c(al.java:297) | |
| at com.intellij.ide.a.l.aD.c(aD.java:181) | |
| at com.intellij.ide.a.l.aD.a(aD.java:78) | |
| at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
| at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) | |
| at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) |
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 | |
| if (app()->bound('sentry') && $this->shouldReport($exception)) { | |
| $sentry = app('sentry'); | |
| if (auth()->check()) { | |
| \Sentry\configureScope(function (\Sentry\State\Scope $scope): void { | |
| $scope->setUser([ | |
| 'id' => auth()->user()->id, | |
| 'name' => auth()->user()->fullname, | |
| 'email' => auth()->user()->email, | |
| ]); |
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: Test Branch | |
| run: echo "${BRANCH}" | |
| - name: Set Region for staging | |
| run: echo "::set-env name=REGION::us-east-2" | |
| if: ${{ env.BRANCH }} == "staging" | |
| - name: Set Region for production | |
| run: echo "::set-env name=REGION::us-east-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
| #!/usr/bin/env python | |
| # Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | |
| # -*- coding: utf-8 -*- | |
| import os | |
| import socket | |
| import struct | |
| import sys | |
| import traceback |
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 | |
| namespace App\Services\Import; | |
| use Carbon\Carbon; | |
| use Illuminate\Http\UploadedFile; | |
| use co\odin\Models\Import; | |
| use co\odin\Models\Account; | |
| class ImportData { |
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 | |
| class ProcessData { | |
| private Object $json; | |
| private Object $processed; | |
| public function __construct($json) | |
| { | |
| $this->setJson($json); |