Skip to content

Commit 33bde0a

Browse files
authored
Merge pull request #63 from gogepp/dev
Release 0.4.13
2 parents be5e811 + 4a1afb9 commit 33bde0a

4 files changed

Lines changed: 94 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
77

8+
## [0.4.13] 2024-02-05
9+
10+
### Added
11+
12+
- Added /healthcheck endpoint to improve galaxy tool build (Will write a line in logs, and send a 200 response)
13+
814
## [0.4.12] 2023-12-07
915

1016
### Fixed

imports/api/api.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { WebApp } from 'meteor/webapp';
2+
import logger from '/imports/api/util/logger.js';
13
import './publications.js';
24

35
/**
@@ -58,3 +60,9 @@ import './jobqueue/process-eggnog.js';
5860
import './jobqueue/process-hectar.js';
5961
import './jobqueue/process-similarsequences.js';
6062
import './jobqueue/process-orthogroup.js';
63+
64+
WebApp.connectHandlers.use('/healthcheck', (req, res, next) => {
65+
logger.log("Healthcheck OK")
66+
res.writeHead(200);
67+
res.end("OK");
68+
});

package-lock.json

Lines changed: 79 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "genoboo",
3-
"version": "0.4.12",
3+
"version": "0.4.13",
44
"repository": "https://github.com/gogepp/genoboo",
55
"description": "A portable website for browsing and querying genome sequences and annotations. Forked from genenotebook",
66
"license": "AGPL-3.0",

0 commit comments

Comments
 (0)