-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.sentry.yml
30 lines (24 loc) · 1.13 KB
/
.sentry.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# This file is used to override the default Sentry configuration without
# having to specify the options on the command line.
#
# All configuration options in this file are optional, and will fall back
# to the default values that Sentry determines based on your `shard.yml`.
#
# Options passed through the command line will override these settings.
# The name of your application when displayed in log output. By default, this
# is the app name specified in `shard.yml`.
display_name: gencert
# Set this to `true` to show configuration information when starting Sentry.
info: true
# The command used to compile the application. Setting this option to `nil` or
# an empty string will act like specifying `--no-build` on the command line.
build: crystal build ./src/main.cr -o ./build/gencert
# The command used to run the compiled application.
run: ./build/gencert
# Any additional arguments to pass to the run command. Run args may only be
# given if the run command is a single argument.
run_args: foo /CN=foo --dns cluster.local --ip 1.1.1.1 --dry-run
# The list of patterns of files for sentry to watch.
watch:
- ./src/**/*.cr
- ./src/**/*.ecr