Open-source Data integration platform
OpenHEXA is an open-source data integration platform developed by Bluesquare.
Its goal is to facilitate data integration and analysis workflows, in particular in the context of public health projects.
Please refer to the OpenHEXA wiki for more information about OpenHEXA.
The OpenHEXA frontend
component is a Next.js application. It is a frontend app designed to
connect to an OpenHEXA instance.
The app communicates with OpenHEXA through its GraphQL API, and uses the standard OpenHEXA cookie-based authentication.
OpenHEXA FrontEnd is published as a Docker Image on Docker Hub: blsq/openhexa-frontend
You can run the frontend component using the following command:
docker run --rm -p 3000:3000 blsq/openhexa-frontend
The server is then exposed at http://localhost:3000
. However, it has to be
configured so that it can access the OpenHEXA backend (See openhexa-app).
If you're looking something working out of the box for local development, go to the next section.
The Installation instructions section of our wiki gives an overview of the local development setup required to run OpenHEXA locally.
The Frontend component requires a recent (v20
or newer) version of Node.js.
We recommend using nvm
to manage multiple versions of Node.
If you use nvm
, npm
can be installed using the following command:
nvm install-latest-npm
Notice that contrary to openhexa-app or openhexa-notebook, the advised environment for local development is not containers.
First, install the dependencies:
npm install
Then, copy .env.local.dist
and adapt it to your needs:
cp .env.local.dist .env.local # adapt the .env file with the required configuration values
Before starting the server, the backend (openhexa-app) should be up and running.
Finally, run the development server:
npm run dev
Open http://localhost:3000 with your browser to see
the result. If you have followed the
backend development setup instructions,
you should be able to log in with the listed credentials in those instructions:
[email protected]
/root
(please check if it hasn't
been updated).
The following environment variables should be provided at build time
(for the npm run build
):
RELEASE
: a release identifier, such as a Git tag (used for uploading source maps to Sentry)SENTRY_AUTH_TOKEN
: A valid Sentry authentication token
The following environment variables should be provided at run time:
OPENHEXA_BACKEND_URL
: the URL of the backend API (used by the nextjs server)SENTRY_TRACES_SAMPLE_RATE
: the Sentry sampling rate of tracesSENTRY_DSN
: the Sentry DSNSENTRY_ENVIRONMENT
: the Sentry environment tagDISABLE_ANALYTICS
: set totrue
to disable analytics tracking (only prevent the requests to be sent to the backend)
We use ESLint (as provided by Next.js) and prettier to format our code.
Lint and format the code using the following command:
npm run lint && npm run format
npm run dev
: Launch Next.js in dev mode and watch files to extract graphql code and generate typescript types and hooksnpm run next
: Launch only the Next.js app in dev modenpm run build
: Build the Next.js appnpm run start
: Start the app from the build directory (it has to be built before)npm run test
: Run the tests in watch modenpm run test:ci
: Run all the tests in CI modenpm run lint
: Lint files insrc/
usingeslint
npm run format
: Format files insrc/
usingprettier
npm run prepare
: This script is called automatically by npm onnpm install
. It adds the pre-commit hooknpm run schema
: Run an introspection query on the graphql backend and generate aschema.graphql
file. This file is used to generate typescript types & for DX in the IDEnpm run codegen
: Generate typescript types found in all the files based onschema.graphql
npm run i18n:extract
: Extract translatable strings and writemessages.json
files for each languagenpm run i18n:translate
Translate themessages.json
files using DeepL (requires a DeepL API keyDEEPL_API_KEY
to be set).
To extract new strings from the src/
directory, run the extract command:
npm run i18n:extract
Translations are stored in public/locales/[lang]/[ns].json
.
To translate the strings using DeepL, run the translate command:
npm run i18n:translate fr # translate to French
or
npm run i18n:translate fr --overwrite # translate to French and overwrite all the strings
You can validate that all the strings are translated using the following command:
npm run i18n:validate
This library follows Semantic Versioning. Tagging and releases' creation are managed by release-please that will create and maintain a pull request with the next release based on the commit messages of the new commits.
Triggering a new release is done by merging the pull request created by release-please. The result is:
- the version in package.json is bumped
- the changelog.md is updated with the commit messages
- a GitHub release is created
- a docker image is built for the new tag and pushed on the docker registry
This project assumes you are using Conventional Commit messages.
The most important prefixes you should have in mind are:
fix:
which represents bug fixes, and correlates to a SemVer patch.feat:
which represents a new feature, and correlates to a SemVer minor.feat!:
, orfix!:
,refactor!:
, etc., which represent a breaking change (indicated by the!
) and will result in a SemVer major.