-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbacon.toml
30 lines (25 loc) · 923 Bytes
/
bacon.toml
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 is a configuration file for the bacon tool
# More info at https://github.com/Canop/bacon
default_job = "test"
[jobs]
# You can run your application and have the result displayed in bacon,
# *if* it makes sense for this crate. You can run an example the same
# way. Don't forget the `--color always` part or the errors won't be
# properly parsed.
[jobs.run]
command = ["cargo", "run", "ue", "https://twitter.com", "https://twitter.com", "--color", "always"]
need_stdout = true
[jobs.test]
command = ["cargo", "test", "--color", "always"]
need_stdout = true
# You may define here keybindings that would be specific to
# a project, for example a shortcut to launch a specific job.
# Shortcuts to internal functions (scrolling, toggling, etc.)
# should go in your personal prefs.toml file instead.
[keybindings]
a = "job:check-all"
i = "job:initial"
c = "job:clippy"
d = "job:doc-open"
t = "job:test"
r = "job:run"