You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the interest of fostering an open and welcoming environment, we as
6
+
contributors and maintainers pledge to making participation in our project and
7
+
our community a harassment-free experience for everyone, regardless of age, body
8
+
size, disability, ethnicity, gender identity and expression, level of experience,
9
+
nationality, personal appearance, race, religion, or sexual identity and
10
+
orientation.
11
+
12
+
## Our Standards
13
+
14
+
Examples of behavior that contributes to creating a positive environment
15
+
include:
16
+
17
+
* Using welcoming and inclusive language
18
+
* Being respectful of differing viewpoints and experiences
19
+
* Gracefully accepting constructive criticism
20
+
* Focusing on what is best for the community
21
+
* Showing empathy towards other community members
22
+
23
+
Examples of unacceptable behavior by participants include:
24
+
25
+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
26
+
* Trolling, insulting/derogatory comments, and personal or political attacks
27
+
* Public or private harassment
28
+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
29
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
30
+
31
+
## Our Responsibilities
32
+
33
+
Project maintainers are responsible for clarifying the standards of acceptable
34
+
behavior and are expected to take appropriate and fair corrective action in
35
+
response to any instances of unacceptable behavior.
36
+
37
+
Project maintainers have the right and responsibility to remove, edit, or
38
+
reject comments, commits, code, wiki edits, issues, and other contributions
39
+
that are not aligned to this Code of Conduct, or to ban temporarily or
40
+
permanently any contributor for other behaviors that they deem inappropriate,
41
+
threatening, offensive, or harmful.
42
+
43
+
## Scope
44
+
45
+
This Code of Conduct applies both within project spaces and in public spaces
46
+
when an individual is representing the project or its community. Examples of
47
+
representing a project or community include using an official project e-mail
48
+
address, posting via an official social media account, or acting as an appointed
49
+
representative at an online or offline event. Representation of a project may be
50
+
further defined and clarified by project maintainers.
51
+
52
+
## Enforcement
53
+
54
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting @vsoch directly. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. @vsoch is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
55
+
56
+
## Thanks
57
+
58
+
This code of conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org/), version 1.4,
59
+
available at http://contributor-covenant.org/version/1/4.
Copy file name to clipboardExpand all lines: docs/_docs/install/index.md
+25-1Lines changed: 25 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,8 @@ order: 1
10
10
11
11
The only dependency for watchme is to have [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
12
12
and [crontab](https://www.digitalocean.com/community/tutorials/how-to-use-cron-to-automate-tasks-on-a-vps) on your system. Git is used for version control of the pages you are watching, and crontab is
13
-
used for scheduling your watches.
13
+
used for scheduling your watches. If you want to install a custom watcher type,
14
+
see [installing extras](#installing-extras) below.
14
15
15
16
## Install
16
17
@@ -62,3 +63,26 @@ actions:
62
63
63
64
64
65
If you have any questions or issues, please [open an issue]({{ site.repo }}/issues).
66
+
67
+
## Installing Extras
68
+
69
+
If you want to install all of watchme's exporters and watchers:
70
+
71
+
```bash
72
+
$ pip install watchme[all]
73
+
```
74
+
75
+
To install all watchers only:
76
+
77
+
```bash
78
+
$ pip install watchme[watchers]
79
+
```
80
+
81
+
or a specific watcher task group:
82
+
83
+
```bash
84
+
$ pip install watchme[watcher-urls-dynamic]
85
+
$ pip install watchme[watcher-psutils]
86
+
```
87
+
88
+
To see all of the choices, see [here](https://github.com/vsoch/watchme/blob/master/setup.py#L109) in the setup file.
0 commit comments