Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.3.0 #96

Merged
merged 11 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/smile-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@ on:
push:
branches:
- main
- develop
- 'release/*'

tags:
- '*'

# only test with local branch
pull_request:
branches:
- main
- develop
- 'release/*'

# Certain actions will only run when this is the main repo.
env:
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.9]
## [0.3.0] - 2023-09-14
### Fixed
- Github action to auto generate docker container [#93](https://github.com/ncsa/standalone-smm-smile/issues/93)

### Added
- Enable email sending [#72](https://github.com/ncsa/standalone-smm-smile/issues/72)

## [0.2.9] - 2023-08-04
### Added
- Environment variable to turn Clowder on and off [#86](https://github.com/ncsa/standalone-smm-smile/issues/86)
- Replace Twitter API v1 with X (Twitter) API v2 and implement OAUTH2 [#10](https://github.com/ncsa/standalone-smm-smile/issues/10)
Expand Down
4 changes: 1 addition & 3 deletions www/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ if (process.env.DOCKERIZED === 'true') {
CLOWDER_ON = process.env.CLOWDER_ON;

if (process.env.EMAIL_HOST === "" || process.env.EMAIL_HOST === undefined || process.env.EMAIL_HOST === null ||
process.env.EMAIL_PORT === "" || process.env.EMAIL_PORT === undefined || process.env.EMAIL_PORT === null ||
process.env.EMAIL_FROM_ADDRESS === "" || process.env.EMAIL_FROM_ADDRESS === undefined || process.env.EMAIL_FROM_ADDRESS === null ||
process.env.EMAIL_PASSWORD === "" || process.env.EMAIL_PASSWORD === undefined || process.env.EMAIL_PASSWORD === null) {
process.env.EMAIL_FROM_ADDRESS === "" || process.env.EMAIL_FROM_ADDRESS === undefined || process.env.EMAIL_FROM_ADDRESS === null) {
email = false;
}

Expand Down
2 changes: 1 addition & 1 deletion www/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion www/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smile_server",
"version": "0.2.9",
"version": "0.3.0",
"description": "",
"main": "app.js",
"dependencies": {
Expand Down
4 changes: 0 additions & 4 deletions www/views/components/aws-batch.pug
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ div(id="aws-batch" class="modal fade" role="dialog" data-backdrop="static" data-
p The algorithm or dataset you selected exceeds the limitation for realtime process.
| We will have to place this on a job queue.
| Once your computation job has succeeded, we will email you with instructions to review your results.
img(src="bootstrap/img/gifs/warning.gif",style="width:15px;")
p(style="display:inline;color:red;")
b You may feel free to leave this page or close your browser.
| BUT DO NOT TERMINATE THIS SESSION AFTER SUBMITTING THIS JOB!
div(class="form-group")
label(class="control-label col-md-4 col-md-4 col-xs-12") Dataset
div(class="col-md-8 col-md-8 col-xs-12")
Expand Down
4 changes: 0 additions & 4 deletions www/views/components/image-crawler.pug
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ div(id="image-crawler" class="modal fade" role="dialog" data-backdrop="static" d
div(class="form-group")
p Once you submit the request, we will place it on a job queue.
| Further instructions will be sent to you via email once the collection is completed.
img(src="bootstrap/img/gifs/warning.gif", style="width:15px;")
p(style="display:inline;color:red;")
b You may feel free to leave this page or close your browser.
| BUT DO NOT TERMINATE THIS SESSION AFTER SUBMITTING THIS JOB!
div(class="form-group")
label(class="control-label col-md-4 col-md-4 col-xs-12") Dataset
div(class="col-md-8 col-md-8 col-xs-12")
Expand Down
4 changes: 0 additions & 4 deletions www/views/components/reddit-expand.pug
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ div(id="reddit-expand" class="modal fade" role="dialog" data-backdrop="static" d
p Your selected dataset contains hundreds/thousands Reddit post, and for each reddit post, it might have thousands of comments and replies.
| This process is very time consuming. Once you submit the request, we will have to place this on a job queue.
| We will email you with further instruction when the collection is completed.
img(src="bootstrap/img/gifs/warning.gif",style="width:15px;")
p(style="display:inline;color:red;")
b You may feel free to leave this page or close your browser.
| BUT DO NOT TERMINATE THIS SESSION AFTER SUBMITTING THIS JOB!
div(class="form-group")
label(class="control-label col-md-4 col-md-4 col-xs-12",for="") Dataset
div(class="col-md-8 col-md-8 col-xs-12")
Expand Down