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
defmodule MyApp.Application do | |
use Application | |
def start(_type, _args) do | |
MyApp.Appsignal.EctoParentSpan.attach() | |
children = [ | |
# ... | |
] |
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
0xc5214db6AB71EF218169D93E9D2921c10986f64F |
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
0x4991ade085d38ac3a6d82d09672eac9fa64577fa |
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
==> Loading configuration.. | |
Distillery output_dir: rel/vira | |
==> Assembling release.. | |
==> Building release vira:0.0.2 using environment prod | |
==> One or more direct or transitive dependencies are missing from | |
:applications or :included_applications, they will not be included | |
in the release: | |
:ecto_enum | |
:json_web_token |
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 = { | |
root: true, | |
parserOptions: { | |
ecmaVersion: 6, | |
sourceType: 'module' | |
}, | |
extends: 'eslint:recommended', | |
env: { | |
browser: true | |
}, |