Project integrated into the Horizon 2020 EU Research and Innovation Programme.
The goal of this grant is to design, develop, and validate tools that facilitate a more sustainable supply chain management.
How? By identifying where food supply chain raw materials are produced, and analyze its environmental impacts, anticipate future risks and facilitate a well-informed decision-making process.
The tools will be designed, developed and validated through a process of business cases, in which we will ask some companies to participate in the definition and test.
The final outcome of the project is an MVP validated by some of the companies that will take part in business cases. This project is initially organised in 6 work packages:
- Management
- Market & Business
- Products & Services
- Customer Business Cases
- User Portal and Service Portal
- Dissemination & Communication
Visit our documentation live. Alternatively, you can also see our documentation here (TODO: this folder does not exist).
Create the file .env.local. You can see an example on the shared secret storage.
Install dependencies:
pnpm installRun the development server:
pnpm devThe application handles environmental variables using @t3-oss/env-nextjs. You can see the
available (and required) variables in the ./src/env (TODO: this file does not exist. Maybe env.mjs)
file. NOTE: the application will NOT start if the required variables are not set previously.
Additionally, and exclusively for testing purposes, you can set the following environmental variables in the
cypress.env.json (TODO: this file does not exist. Does this file need to be created with this keys filled in? Not
clear reading this) file:
{
"USERNAME": "", // email to authenticate for the e2e tests.
"PASSWORD": "", // password to authenticate for the e2e tests.
"API_URL": "" // API used to run the e2e tests.
}Run the tests locally:
pnpm cypress:headlessRun the tests in a Dockerfile:
docker compose -f docker-compose.test.yml build --build-arg NEXT_PUBLIC_API_URL=https://apiUrl
docker compose -f docker-compose.test.yml up --exit-code-from cypress