Skip to content

Commit

Permalink
feat: include variable units
Browse files Browse the repository at this point in the history
still need to update dataset metadata

refs #201
  • Loading branch information
alee committed Sep 18, 2024
1 parent e996584 commit 15ea3e6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ $(BUILD_CONSTANTS_PATH): app/store/modules/_constants.js.template config.mk $(CI
build: docker-compose.yml $(BUILD_CONSTANTS_PATH)
docker compose build --pull

.PHONY: build-clean | secrets
build-clean: docker-compose.yml $(BUILD_CONSTANTS_PATH)
docker compose build --pull --no-cache

.PHONY: secrets
secrets: $(SECRETS)
mkdir -p secrets
Expand Down
2 changes: 0 additions & 2 deletions app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# syntax=docker/dockerfile:1

FROM node:lts-bookworm

ENV NODE_OPTIONS="--openssl-legacy-provider"
Expand Down
3 changes: 3 additions & 0 deletions app/components/dataset/VariableList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<v-list-item-content>
<v-list-item-title>
{{ variable.name }}
<em>
<span v-if="variable.units"> ({{ variable.units }}) </span>
</em>
</v-list-item-title>
</v-list-item-content>
</v-list-item>
Expand Down
1 change: 0 additions & 1 deletion base.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.8'
services:
web:
build: app
Expand Down
1 change: 0 additions & 1 deletion dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.8'
services:
web:
volumes:
Expand Down
1 change: 0 additions & 1 deletion prod.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.8'
services:
web:
environment:
Expand Down

0 comments on commit 15ea3e6

Please sign in to comment.