diff options
author | Case Duckworth | 2020-05-02 21:13:34 -0500 |
---|---|---|
committer | Case Duckworth | 2020-05-02 21:13:34 -0500 |
commit | 32bb8558b33898cc13465a042480fa6b9b7d0a63 (patch) | |
tree | a9d6e71ed3a513910372971556ccec08f85f77b0 | |
parent | Quote (diff) | |
download | licensor-32bb8558b33898cc13465a042480fa6b9b7d0a63.tar.gz licensor-32bb8558b33898cc13465a042480fa6b9b7d0a63.zip |
Add README
-rw-r--r-- | README.md | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..563582a --- /dev/null +++ b/README.md | |||
@@ -0,0 +1,49 @@ | |||
1 | # licenser: plop a license in there | ||
2 | |||
3 | Are you tired of copying and pasting licenses into your new projects? | ||
4 | Do you always forget what the dang github api thing is? | ||
5 | Or I don't know, have some other reason why doing licenses is hard? | ||
6 | |||
7 | Well now you don't have to worry! | ||
8 | Just run `licenser` in your new repo and BLAMMO! | ||
9 | Done. | ||
10 | |||
11 | ## Usage | ||
12 | |||
13 | literally taken from `licenser -h` | ||
14 | |||
15 | ``` | ||
16 | licenser [-h|-l] [-y YEAR] [-a AUTHOR] [-o FILE] LICENSE | ||
17 | |||
18 | -h show this help and exit | ||
19 | -l list available licenses and exit | ||
20 | -f overwrite existing license | ||
21 | -y YEAR set the copyright date to YEAR | ||
22 | -a AUTHOR set the copyright holder to AUTHOR | ||
23 | -o FILE output to FILE | ||
24 | LICENSE which license to use | ||
25 | |||
26 | YEAR defaults to the current year. | ||
27 | AUTHOR is guessed by the following, in order: | ||
28 | - git config --get user.name | ||
29 | - getent passwd $USER | ||
30 | - $USER | ||
31 | FILE defaults to LICENSE in the current directory | ||
32 | ``` | ||
33 | |||
34 | ## Contributing | ||
35 | |||
36 | Send me a request for another license or a pull-thingy | ||
37 | through [the mailing list](~acdw/licenser@lists.sr.ht). | ||
38 | |||
39 | Or, look at the [roadmap](https://todo.sr.ht/~acdw/licenser). | ||
40 | |||
41 | ## License | ||
42 | |||
43 | MIT, baby. | ||
44 | |||
45 | |||
46 | ## Author | ||
47 | |||
48 | Case Duckworth <acdw@acdw.net> wrote this. | ||
49 | He did not look around for existing solutions. | ||