-
Notifications
You must be signed in to change notification settings - Fork 16.3k
docs: Guide for resolving UI TemplateNotFound in Breeze setup #54521
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
docs: Guide for resolving UI TemplateNotFound in Breeze setup #54521
Conversation
|
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contributors' Guide (https://github.com/apache/airflow/blob/main/contributing-docs/README.rst)
|
…eeze setup
This updates the contributor quick start documentation to include a troubleshooting note for the error:
jinja2.exceptions.TemplateNotFound: '/index.html' not found in search path: '/opt/airflow/airflow-core/src/airflow/ui/dist'
The note instructs users to run `breeze compile-ui-assets` before starting the Breeze environment if they encounter this error, and to verify that UI assets are added to `/airflow/.build/ui`. This helps contributors resolve frontend asset issues during initial setup.
Also clarifies the placement of this step relative to existing Breeze initialization instructions.
614b9b9 to
5711847
Compare
|
@potiuk This is my first PR. I’ve fixed the lint errors and confirmed that all checks are now passing. Could you please review and approve for merge? Let me know if there’s anything else I should address. |
|
Awesome work, congrats on your first merged pull request! You are invited to check our Issue Tracker for additional contributions. |
…etup (apache#54521) (cherry picked from commit 83f0dc5) Co-authored-by: Vishal <69051998+dataengineervishal@users.noreply.github.com>
This pull request updates the contributor quick start documentation to help users resolve a common issue that can occur when setting up the Breeze environment. Specifically, it adds troubleshooting instructions for the following error:
jinja2.exceptions.TemplateNotFound: '/index.html' not found in search path: '/opt/airflow/airflow-core/src/airflow/ui/dist'The documentation now instructs users to run breeze compile-ui-assets before initializing the Breeze environment if they encounter this error, and to verify that the compiled UI assets are present in /airflow/.build/ui before proceeding.
This addition aims to make the onboarding process smoother and to help new contributors quickly resolve UI asset-related errors during setup.