open-cuak
open-cuak copied to clipboard
Issue with running the project with Docker [Windows]
Hey there! I wanted to run a project locally, so I followed the instructions on how to set it up.
First, I cloned the repo. Then, I installed the dependencies with this command: npm install --force - I used force flag intentionally cause I have faced plenty of issues with conflicting packages and obsolete versions.
Finally, I run this command: npm run dev to start the dev server. After executing this command new .env.local & .env.production files were created and populated with basic data from .env examples. A few seconds later, I faced an issue:
> [email protected] supabase:storage:init
> npm run web:run-script -- ./scripts/init/register-local-storage-buckets.ts
> [email protected] web:run-script
> cd apps/web && TS_NODE_PROJECT=./tsconfig.json npx ts-node -r tsconfig-paths/register ./scripts/init/register-local-storage-buckets.ts
'TS_NODE_PROJECT' is not recognized as an internal or external command,
operable program or batch file.
TS_NODE_PROJECT - is it an error associated with TS configuration file or something else? Please help resolve this issue.