Skip to content
Snippets Groups Projects
Commit 5b82ffd2 authored by Ned Batchelder's avatar Ned Batchelder
Browse files

A little documentation.

parent 091ca9c3
No related merge requests found
......@@ -174,6 +174,8 @@ end
desc "Install all python prerequisites for the lms and cms"
task :install_python_prereqs do
sh('pip install -r requirements.txt')
# Check for private-requirements.txt: used to install our libs as working dirs,
# or personal-use tools.
if File.file?("private-requirements.txt")
sh('pip install -r private-requirements.txt')
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment