Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
cc1a8a4b
Commit
cc1a8a4b
authored
Apr 30, 2013
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1918 from MITx/ned/personal-requirements
Ned/personal requirements
parents
3e314a2c
5b82ffd2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
5 deletions
+11
-5
.gitignore
+1
-0
github-requirements.txt
+5
-0
local-requirements.txt
+0
-5
rakefile
+5
-0
No files found.
.gitignore
View file @
cc1a8a4b
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
:2e#
:2e#
.AppleDouble
.AppleDouble
database.sqlite
database.sqlite
private-requirements.txt
courseware/static/js/mathjax/*
courseware/static/js/mathjax/*
flushdb.sh
flushdb.sh
build
build
...
...
github-requirements.txt
View file @
cc1a8a4b
# Python libraries to install directly from github
# Python libraries to install directly from github
# Third-party:
-e git://github.com/MITx/django-staticfiles.git@6d2504e5c8#egg=django-staticfiles
-e git://github.com/MITx/django-staticfiles.git@6d2504e5c8#egg=django-staticfiles
-e git://github.com/MITx/django-pipeline.git#egg=django-pipeline
-e git://github.com/MITx/django-pipeline.git#egg=django-pipeline
-e git://github.com/MITx/django-wiki.git@e2e84558#egg=django-wiki
-e git://github.com/MITx/django-wiki.git@e2e84558#egg=django-wiki
-e git://github.com/dementrock/pystache_custom.git@776973740bdaad83a3b029f96e415a7d1e8bec2f#egg=pystache_custom-dev
-e git://github.com/dementrock/pystache_custom.git@776973740bdaad83a3b029f96e415a7d1e8bec2f#egg=pystache_custom-dev
# Our libraries:
-e git+https://github.com/edx/XBlock.git@5ce6f70a#egg=XBlock
local-requirements.txt
View file @
cc1a8a4b
...
@@ -2,8 +2,3 @@
...
@@ -2,8 +2,3 @@
-e common/lib/capa
-e common/lib/capa
-e common/lib/xmodule
-e common/lib/xmodule
-e .
-e .
# XBlock:
# Might change frequently, so put it in local-requirements.txt,
# but conceptually is an external package, so it is in a separate repo.
-e git+https://github.com/edx/XBlock.git@5ce6f70a#egg=XBlock
rakefile
View file @
cc1a8a4b
...
@@ -174,6 +174,11 @@ end
...
@@ -174,6 +174,11 @@ end
desc
"Install all python prerequisites for the lms and cms"
desc
"Install all python prerequisites for the lms and cms"
task
:install_python_prereqs
do
task
:install_python_prereqs
do
sh
(
'pip install -r requirements.txt'
)
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
end
end
task
:predjango
do
task
:predjango
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment