-
Notifications
You must be signed in to change notification settings - Fork 27
/
.sentry.example.yml
34 lines (27 loc) · 1.24 KB
/
.sentry.example.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
31
32
33
34
# 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: my-program-name
# 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/sentry_cli.cr -o ./my-program-name
# Any additional arguments to pass to the build command. Build args may only
# be given if the build command is a single argument.
build_args:
# The command used to run the compiled application.
run: ./my-program-name
# 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:
# The list of patterns of files for sentry to watch.
watch:
- ./src/**/*.cr
- ./src/**/*.ecr