Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: ['18', '20']
node-version: ['20', '22', '24']

steps:
- name: Check out repo
Expand All @@ -27,7 +27,7 @@ jobs:
cache: npm

- name: Install dependencies
run: npm install
run: npm run install:aws

- name: Build the application
run: npm run build
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Note: Numbers like (#123) point to closed Pull Requests on the fractal-vizarr-viewer repository.

# Unreleased

* Added support for S3 paths (\#82);
* Fixed handling of invalid range requests (\#82);
* Dropped Node 18 support, now requiring Node 20 (\#82);

# 0.4.3

* Update `User` type (\#74);
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ADD src src
ADD package* .
ADD tsconfig.json .

RUN npm install
RUN npm run install:aws
RUN npm run build

ENV VIZARR_STATIC_FILES_PATH=/vizarr/dist
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ Get and install the `fractal-data` application:
git clone https://github.com/fractal-analytics-platform/fractal-data.git
cd fractal-data
npm install
# If your data is stored on S3, install also the AWS dependencies
npm run install:aws
```

Copy the file `.env.example` to `.env` and customize values for the environment variables.
Expand Down
Loading