Skip to content
This repository was archived by the owner on Dec 30, 2024. It is now read-only.

Commit cbadfa2

Browse files
committed
Update to version v1.0.0
1 parent be5bfee commit cbadfa2

File tree

216 files changed

+91605
-13
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+91605
-13
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior.
15+
16+
**Expected behavior**
17+
A clear and concise description of what you expected to happen.
18+
19+
**Please complete the following information about the solution:**
20+
- [ ] Version: [e.g. v1.0.0]
21+
22+
To get the version of the solution, you can look at the description of the created CloudFormation stack. For example, "(SO0122) - Discovering Hot Topics using Machine Learning. Version v1.0.0".
23+
24+
- [ ] Region: [e.g. us-east-1]
25+
- [ ] Was the solution modified from the version published on this repository?
26+
- [ ] If the answer to the previous question was yes, are the changes available on GitHub?
27+
- [ ] Have you checked your [service quotas](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) for the sevices this solution uses?
28+
- [ ] Were there any errors in the CloudWatch Logs?
29+
30+
**Screenshots**
31+
If applicable, add screenshots to help explain your problem (please **DO NOT include sensitive information**).
32+
33+
**Additional context**
34+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this solution
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the feature you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*Issue #, if available:*
2+
3+
*Description of changes:*
4+
5+
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

.gitignore

Lines changed: 269 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,269 @@
1+
*.js
2+
!jest.config.js
3+
!source/.typescript/lambda/**/*.js
4+
!source/lambda/**/*.js
5+
!source/lib/**/*.ts
6+
!source/lib
7+
node_modules
8+
*.d.ts
9+
.DS_Store
10+
._*
11+
12+
# CDK asset staging directory
13+
.cdk.staging
14+
cdk.out
15+
16+
!**/cdk-solution-helper/index.js
17+
18+
deployment/global-s3-assets
19+
deployment/regional-s3-assets
20+
open-source/
21+
deployment/staging
22+
23+
### Node ###
24+
# Logs
25+
logs
26+
*.log
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
30+
lerna-debug.log*
31+
32+
# Diagnostic reports (https://nodejs.org/api/report.html)
33+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
34+
35+
# Runtime data
36+
pids
37+
*.pid
38+
*.seed
39+
*.pid.lock
40+
41+
# Directory for instrumented libs generated by jscoverage/JSCover
42+
lib-cov
43+
44+
# Coverage directory used by tools like istanbul
45+
coverage
46+
*.lcov
47+
48+
# nyc test coverage
49+
.nyc_output
50+
51+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
52+
.grunt
53+
54+
# Bower dependency directory (https://bower.io/)
55+
bower_components
56+
57+
# node-waf configuration
58+
.lock-wscript
59+
60+
# Compiled inary addons (https://nodejs.org/api/addons.html)
61+
build/Release
62+
63+
# Dependency directories
64+
node_modules/
65+
jspm_packages/
66+
67+
# TypeScript v1 declaration files
68+
typings/
69+
70+
# TypeScript cache
71+
*.tsbuildinfo
72+
73+
# Optional npm cache directory
74+
.npm
75+
76+
# Optional eslint cache
77+
.eslintcache
78+
79+
# Optional REPL history
80+
.node_repl_history
81+
82+
# Output of 'npm pack'
83+
*.tgz
84+
85+
# Yarn Integrity file
86+
.yarn-integrity
87+
88+
# dotenv environment variables file
89+
.env
90+
.env.test
91+
92+
# parcel-bundler cache (https://parceljs.org/)
93+
.cache
94+
95+
# next.js build output
96+
.next
97+
98+
# nuxt.js build output
99+
.nuxt
100+
101+
# rollup.js default build output
102+
dist/
103+
104+
# Uncomment the public line if your project uses Gatsby
105+
# https://nextjs.org/blog/next-9-1#public-directory-support
106+
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
107+
# public
108+
109+
# Storybook build outputs
110+
.out
111+
.storybook-out
112+
113+
# vuepress build output
114+
.vuepress/dist
115+
116+
# Serverless directories
117+
.serverless/
118+
119+
# FuseBox cache
120+
.fusebox/
121+
122+
# DynamoDB Local files
123+
.dynamodb/
124+
125+
# Temporary folders
126+
tmp/
127+
temp/
128+
129+
### VisualStudioCode Patch ###
130+
# Ignore all local history of files
131+
.history
132+
.swp
133+
.vscode
134+
.DS_Store
135+
136+
### Python ###
137+
# Byte-compiled / optimized / DLL files
138+
__pycache__/
139+
*.py[cod]
140+
*$py.class
141+
142+
# C extensions
143+
*.so
144+
145+
# Distribution / packaging
146+
.Python
147+
build/
148+
develop-eggs/
149+
dist/
150+
downloads/
151+
eggs/
152+
.eggs/
153+
lib64/
154+
parts/
155+
sdist/
156+
var/
157+
wheels/
158+
pip-wheel-metadata/
159+
share/python-wheels/
160+
*.egg-info/
161+
.installed.cfg
162+
*.egg
163+
MANIFEST
164+
165+
# PyInstaller
166+
# Usually these files are written by a python script from a template
167+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
168+
*.manifest
169+
*.spec
170+
171+
# Installer logs
172+
pip-log.txt
173+
pip-delete-this-directory.txt
174+
175+
# Unit test / coverage reports
176+
htmlcov/
177+
.tox/
178+
.nox/
179+
.coverage
180+
.coverage.*
181+
.cache
182+
nosetests.xml
183+
coverage.xml
184+
*.cover
185+
*.py,cover
186+
.hypothesis/
187+
.pytest_cache/
188+
189+
# Translations
190+
*.mo
191+
*.pot
192+
193+
# Django stuff:
194+
*.log
195+
local_settings.py
196+
db.sqlite3
197+
db.sqlite3-journal
198+
199+
# Flask stuff:
200+
instance/
201+
.webassets-cache
202+
203+
# Scrapy stuff:
204+
.scrapy
205+
206+
# Sphinx documentation
207+
docs/_build/
208+
209+
# PyBuilder
210+
target/
211+
212+
# Jupyter Notebook
213+
.ipynb_checkpoints
214+
215+
# IPython
216+
profile_default/
217+
ipython_config.py
218+
219+
# pyenv
220+
.python-version
221+
222+
# pipenv
223+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
224+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
225+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
226+
# install all needed dependencies.
227+
#Pipfile.lock
228+
229+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
230+
__pypackages__/
231+
232+
# Celery stuff
233+
celerybeat-schedule
234+
celerybeat.pid
235+
236+
# SageMath parsed files
237+
*.sage.py
238+
239+
# Environments
240+
.env
241+
env/
242+
venv/
243+
.venv*
244+
ENV/
245+
env.bak/
246+
venv.bak/
247+
248+
# Spyder project settings
249+
.spyderproject
250+
.spyproject
251+
252+
# Rope project settings
253+
.ropeproject
254+
255+
# mkdocs documentation
256+
/site
257+
258+
# mypy
259+
.mypy_cache/
260+
.dmypy.json
261+
dmypy.json
262+
263+
# Pyre type checker
264+
.pyre/
265+
266+
# pytype static type analyzer
267+
.pytype/
268+
source/lambda/wf_publish_topic_model/test/fixtures/output/doc-topics.csv
269+
source/lambda/wf_publish_topic_model/test/fixtures/output/topic-terms.csv

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [1.0.0] - 2020-08-28
9+
### Added
10+
- Initial release

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/awslabs/discovering-hot-topics-using-machine-learning/issues), or [recently closed](https://github.com/awslabs/discovering-hot-topics-using-machine-learning/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps
@@ -41,7 +41,7 @@ GitHub provides additional document on [forking a repository](https://help.githu
4141

4242

4343
## Finding contributions to work on
44-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
44+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/discovering-hot-topics-using-machine-learning/labels/help%20wanted) issues is a great place to start.
4545

4646

4747
## Code of Conduct
@@ -56,6 +56,6 @@ If you discover a potential security issue in this project we ask that you notif
5656

5757
## Licensing
5858

59-
See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
59+
See the [LICENSE](https://github.com/awslabs/discovering-hot-topics-using-machine-learning/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
6060

6161
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

LICENSE renamed to LICENSE.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,3 +173,5 @@
173173
defend, and hold each Contributor harmless for any liability
174174
incurred by, or claims asserted against, such Contributor by reason
175175
of your accepting any such warranty or additional liability.
176+
177+
END OF TERMS AND CONDITIONS

NOTICE

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)