Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Add local requirements #6807

Merged
merged 3 commits into from
Sep 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions playbooks/roles/edxapp/tasks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@
tags:
- install
- install:app-requirements

- name: Install local edxapp requirements
command: "{{ edxapp_venv_dir }}/bin/pip install -e {{ edxapp_code_dir }}/."
become_user: "{{ edxapp_user }}"
tags:
- install
- install:app-requirements

# Private requirements require a ssh key to install, use the same key as the private key for edx-platform
# If EDXAPP_INSTALL_PRIVATE_REQUIREMENTS is set to true EDXAPP_USE_GIT_IDENTITY must also be true
Expand Down