Skip to content

Commit

Permalink
GPLv3 license
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelkallis committed Apr 13, 2020
1 parent e5d3bc1 commit 59e909b
Show file tree
Hide file tree
Showing 12 changed files with 1,497 additions and 22 deletions.
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

695 changes: 674 additions & 21 deletions LICENSE

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ Machine learning driven issue classification bot.

![](https://thumbs.gfycat.com/GreedyBrownHochstettersfrog-size_restricted.gif)

### License

```
Ticket Tagger automatically predicts and labels issue types.
Copyright (C) 2018,2019,2020 Rafael Kallis
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
```

### Development

#### notice:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"dataset:vscode:baseline": "wget https://gist.githubusercontent.com/rafaelkallis/6aa281b00d73d77fc843bd34f8184854/raw/8c10ebf2fd6f937f8667c660ea33d122bac739eb/issues_vscode_baseline.txt -O dataset.txt"
},
"author": "Rafael Kallis <[email protected]>",
"license": "MIT",
"license": "GPLv3",
"dependencies": {
"chalk": "^2.4.1",
"dotenv": "^6.0.0",
Expand Down
16 changes: 16 additions & 0 deletions src/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/**
* @license Ticket Tagger automatically predicts and labels issue types.
* Copyright (C) 2018,2019,2020 Rafael Kallis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @file app.js
* @author Rafael Kallis <[email protected]>
*/
Expand Down
16 changes: 16 additions & 0 deletions src/app.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/**
* @license Ticket Tagger automatically predicts and labels issue types.
* Copyright (C) 2018,2019,2020 Rafael Kallis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @file app integration test
* @author Rafael Kallis <[email protected]>
*/
Expand Down
16 changes: 16 additions & 0 deletions src/benchmark.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/**
* @license Ticket Tagger automatically predicts and labels issue types.
* Copyright (C) 2018,2019,2020 Rafael Kallis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @file benchmark.js
* @author Rafael Kallis <[email protected]>
*/
Expand Down
16 changes: 16 additions & 0 deletions src/classifier.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/**
* @license Ticket Tagger automatically predicts and labels issue types.
* Copyright (C) 2018,2019,2020 Rafael Kallis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @file ticket classifier
* @author Rafael Kallis <[email protected]>
*/
Expand Down
16 changes: 16 additions & 0 deletions src/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/**
* @license Ticket Tagger automatically predicts and labels issue types.
* Copyright (C) 2018,2019,2020 Rafael Kallis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @file config.js
* @author Rafael Kallis <[email protected]>
*/
Expand Down
16 changes: 16 additions & 0 deletions src/github.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/**
* @license Ticket Tagger automatically predicts and labels issue types.
* Copyright (C) 2018,2019,2020 Rafael Kallis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @file github.js
* @author Rafael Kallis <[email protected]>
*/
Expand Down
16 changes: 16 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/**
* @license Ticket Tagger automatically predicts and labels issue types.
* Copyright (C) 2018,2019,2020 Rafael Kallis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @file index
* @author Rafael Kallis <[email protected]>
*/
Expand Down
16 changes: 16 additions & 0 deletions src/train.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
/**
* @license Ticket Tagger automatically predicts and labels issue types.
* Copyright (C) 2018,2019,2020 Rafael Kallis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @file train.js
* @author Rafael Kallis <[email protected]>
*/
Expand Down

0 comments on commit 59e909b

Please sign in to comment.