Skip to content

Commit

Permalink
adding info for WS291
Browse files Browse the repository at this point in the history
  • Loading branch information
nuin committed Jan 9, 2024
1 parent 1eeac9c commit 179aa8a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .ebextensions/.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
option_settings:
- option_name: WB_DB_URI
value: datomic:ddb://us-east-1/WS290/wormbase
value: datomic:ddb://us-east-1/WS291/wormbase
- option_name: _JAVA_OPTIONS
value: "-Xmx13g"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME := wormbase/rest
WORMBASE_REST_VERSION ?= "1.5.4"
WORMBASE_REST_VERSION ?= "1.5.5"
EBX_CONFIG := .ebextensions/.config
WB_DB_URI ?= $(shell sed -rn 's|value:(.*)|\1|p' \
${EBX_CONFIG} | tr -d " " | head -n 1)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Run following commands and test each step happens correctly.

```bash
export WB_DB_URI="datomic:ddb://us-east-1/WS290/wormbase"
export WB_DB_URI="datomic:ddb://us-east-1/WS291/wormbase"
lein ring server-headless 8130
lein do eastwood, test
make docker-build
Expand All @@ -37,7 +37,7 @@ eb deploy
## Setting environment variables

```bash
export WB_DB_URI="datomic:ddb://us-east-1/WS290/wormbase"
export WB_DB_URI="datomic:ddb://us-east-1/WS291/wormbase"
```

## Starting server in development
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.7"
services:
wormbase_api:
image: 357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:1.5.4
image: 357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:1.5.5
ports:
- "80:3000"
environment:
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject wormbase/rest-api "1.5.4"
(defproject wormbase/rest-api "1.5.5"
:description
"REST API for retrieving data from datomic on a per widget basis"
:url "https://github.com/WormBase/wormbase-rest"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-appjar.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

artefact="docker/app.jar"
path=`lein with-profile +datomic-pro,+ddb ring uberjar | \
path=`~/lein with-profile +datomic-pro,+ddb ring uberjar | \
sed -n 's|^Created \(\/.*standalone.jar\)|\1|p'`

mv "${path}" "${artefact}"
Expand Down

0 comments on commit 179aa8a

Please sign in to comment.