forked from samueleaton/sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.sentry.example.yml
45 lines (34 loc) · 1.42 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
35
36
37
38
39
40
41
42
43
44
45
# 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: sentry
# Set this to `true` to show configuration information when starting Sentry.
info: true
# Set this to `false` to removes colorization from output.
colorize: false
# Set this to `false` to skips the attempt to play audio file with `aplay'
# from `alsa-utils' package when building on Linux succeeds or fails.
play_audio: false
# Set this to `false` to skips the build step.
should_build: false
# Set this to `true` to run `shards install` once before Sentry build and run commands.
run_shards_install: true
# The command used to compile the application.
build_command: crystal
# Any additional arguments to pass to the build command.
build_args: build ./src/sentry_cli.cr -o ./bin/sentry
# The command used to run the compiled application.
run_command: ./bin/sentry
# Any additional arguments to pass to the run command.
run_args: -p 3288
# The list of patterns of files for sentry to watch.
watch:
- ./src/**/*.cr
- ./src/**/*.ecr
- ./spec/**/*.cr