Skip to content
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

What does this error mean? #14

Closed
dillfrescott opened this issue Jul 18, 2022 · 2 comments
Closed

What does this error mean? #14

dillfrescott opened this issue Jul 18, 2022 · 2 comments

Comments

@dillfrescott
Copy link
Contributor

Error: ENOENT: no such file or directory, stat '/usr/src/app/noodle/build/index.html'

@a-type
Copy link
Contributor

a-type commented Jul 18, 2022

That would indicate that the frontend client files have not been built. "ENOENT" is an OS error code which stands for "Error: No Entry" which means the file was not found at the location. Since the frontend is transpiled, the build step needs to be run before the source files are written.

The (confusingly named) yarn precontainerize script will run all builds for you, which should produce the necessary files. If you're building a Docker image from source, that commands needs to be run first. Building all the source files within the Docker image itself was unfortunately too much for most systems to handle, so that's why it's a separate step for now.

If you're running in Docker I recommend pulling our pre-built Docker image which should already have everything in place: docker pull ghcr.io/with-labs/popspace:latest

@dillfrescott
Copy link
Contributor Author

Thank you so much for the clarification!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants