This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
Error: ENOENT: no such file or directory, open '%PARENT_PATH%/metadata.json' #70
Labels
bug 🪲
Something isn't working
When I try to run Launch Kit backend, I get the following issue:
Error: ENOENT: no such file or directory, open '%PARENT_PATH%/metadata.json'
where %PARENT_PATH% is the folder above the one where Launch Kit is installed.To reproduce:
git clone https://github.com/0xProject/0x-launch-kit-backend.git 0x-backend
cd 0x-backend
yarn
yarn start:js
I fixed locally by changing
path.join(__dirname, '../../metadata.json');
topath.join(__dirname, '../metadata.json');
injs/config.js
.The text was updated successfully, but these errors were encountered: