-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code not running on my local machine. #3298
Comments
Welcome! 👋 Thanks for opening your first issue here! And to ensure the community is able to respond to your issue, be sure to follow the issue template if you haven't already. |
As i work on these and Deep dive into the Documentation and Architechure .The error occurs because the manifest.json file, required by the application, is not generated or present in the dist/static directory. This happens because the build process was not completed before starting the application. Root Cause: docker-compose -f docker-compose-development.yml run --rm app npm run fetch-examples To resolve this, follow the installation documentation properly. Specifically, ensure that the build step is completed first. Run the following command to build the application: docker-compose -f docker-compose-development.yml run --rm app npm run build Once the build process is complete and the necessary files (like manifest.json) are generated, you can proceed with: docker-compose -f docker-compose-development.yml run --rm app npm run fetch-examples Why This Happens: |
@Jatin24062005 Thankyou Jatin .The issue is Solved now the code is perfectly running on my local machine. |
p5.js version
No response
What is your operating system?
Mac OS
Web browser and version
No response
Actual Behavior
When I run the code using Docker on my local machine, it doesn't execute properly. I'm encountering the following errors:
Expected Behavior
I want the code to run properly(without any issues) on my local machine.
Steps to reproduce
...
The text was updated successfully, but these errors were encountered: