Skip to content

Commit

Permalink
Merge pull request #63 from gogepp/dev
Browse files Browse the repository at this point in the history
Release 0.4.13
  • Loading branch information
mboudet authored Feb 5, 2024
2 parents be5e811 + 4a1afb9 commit 33bde0a
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)

## [0.4.13] 2024-02-05

### Added

- Added /healthcheck endpoint to improve galaxy tool build (Will write a line in logs, and send a 200 response)

## [0.4.12] 2023-12-07

### Fixed
Expand Down
8 changes: 8 additions & 0 deletions imports/api/api.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { WebApp } from 'meteor/webapp';
import logger from '/imports/api/util/logger.js';
import './publications.js';

/**
Expand Down Expand Up @@ -58,3 +60,9 @@ import './jobqueue/process-eggnog.js';
import './jobqueue/process-hectar.js';
import './jobqueue/process-similarsequences.js';
import './jobqueue/process-orthogroup.js';

WebApp.connectHandlers.use('/healthcheck', (req, res, next) => {
logger.log("Healthcheck OK")
res.writeHead(200);
res.end("OK");
});
82 changes: 79 additions & 3 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "genoboo",
"version": "0.4.12",
"version": "0.4.13",
"repository": "https://github.com/gogepp/genoboo",
"description": "A portable website for browsing and querying genome sequences and annotations. Forked from genenotebook",
"license": "AGPL-3.0",
Expand Down

0 comments on commit 33bde0a

Please sign in to comment.