forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Support running pull_translations with base dependencies (opened…
…x#34285) Since `make pull_translations` is now performed at build time (in the new Atlas workflow), it will generally only have access to base dependencies. However, it depends on the `i18n_tools` command that was only installed at the testing layer. This moves the dependency from testing to base. (There is no increase in artifact size, as ora2 already depends on it and is installed at the base later.) This also adds `API_ACCESS_MANAGER_EMAIL` to the minimal settings so that `make pull_translations` can be run using production envs in a local environment (to test the lack of dependency on developer-level deps.) This supports OEP-58.
- Loading branch information
Showing
5 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,6 @@ DATA_DIR: "/tmp/edx-platform/data_dir/" | |
# For just the CMS | ||
LMS_ROOT_URL: "http://localhost" | ||
LMS_INTERNAL_ROOT_URL: "http://localhost" | ||
|
||
# So that Swagger config code doesn't complain | ||
API_ACCESS_MANAGER_EMAIL: "[email protected]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters