Skip to content

Commit

Permalink
Merge pull request #20 from eipm/develop
Browse files Browse the repository at this point in the history
v1.2.1
  • Loading branch information
alexsigaras authored Aug 10, 2021
2 parents 3b1c29b + e212ddc commit 07af097
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ https://doi.org/10.1038/s41746-019-0096-y

Classify IVF images in real time.

[![Actions Status](https://github.com/eipm/stork/workflows/Docker/badge.svg)](https://github.com/eipm/stork/actions) [![Github](https://img.shields.io/badge/github-1.2.0-green?style=flat&logo=github)](https://github.com/eipm/stork) [![EIPM Docker Hub](https://img.shields.io/badge/EIPM%20docker%20hub-1.2.0-blue?style=flat&logo=docker)](https://hub.docker.com/repository/docker/eipm/stork) [![GitHub Container Registry](https://img.shields.io/badge/GitHub%20Container%20Registry-1.2.0-blue?style=flat&logo=docker)](https://github.com/orgs/eipm/packages/container/package/stork) [![Python 2.7](https://img.shields.io/badge/python-2.7-blue.svg)](https://www.python.org/downloads/release/python-360/) [![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Actions Status](https://github.com/eipm/stork/workflows/Docker/badge.svg)](https://github.com/eipm/stork/actions) [![Github](https://img.shields.io/badge/github-1.2.1-green?style=flat&logo=github)](https://github.com/eipm/stork) [![EIPM Docker Hub](https://img.shields.io/badge/EIPM%20docker%20hub-1.2.1-blue?style=flat&logo=docker)](https://hub.docker.com/repository/docker/eipm/stork) [![GitHub Container Registry](https://img.shields.io/badge/GitHub%20Container%20Registry-1.2.1-blue?style=flat&logo=docker)](https://github.com/orgs/eipm/packages/container/package/stork) [![Python 2.7](https://img.shields.io/badge/python-2.7-blue.svg)](https://www.python.org/downloads/release/python-360/) [![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Run Stork

Expand Down
1 change: 1 addition & 0 deletions src/api/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
app.config['UPLOAD_DIR'] = UPLOAD_DIR
app.config['SECRET_KEY'] = 'secret_key'
app.config['CORS_HEADERS'] = 'Content-Type'
app.config['MAX_CONTENT_LENGTH'] = 100 * 1000 * 1000
CORS(app)

users_dict = literal_eval(os.environ['USERS_DICT'])
Expand Down
2 changes: 1 addition & 1 deletion src/api/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = '1.2.0'
version = '1.2.1'

def api_version():
return version
2 changes: 1 addition & 1 deletion src/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
</div>
<footer>
<div>Copyright © <span id="year"></span> Englander Institute for Precision Medicine</div>
<div>Stork Version 1.2.0</div>
<div>Stork Version 1.2.1</div>
<img alt="logo" class="footer-logo" src="assets/LOGO_ENGLANDER_2LINE_RGB.png">
</footer>

Expand Down
2 changes: 1 addition & 1 deletion src/static/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h5 class="login-title">Log in</h5>
</div>
<footer>
<div>Copyright © <span id="year"></span> Englander Institute for Precision Medicine</div>
<div>Stork Version 1.2.0</div>
<div>Stork Version 1.2.1</div>
<img alt="logo" class="footer-logo" src="assets/LOGO_ENGLANDER_2LINE_RGB.png">
</footer>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.1/jquery.min.js"></script>
Expand Down

0 comments on commit 07af097

Please sign in to comment.