Replace rake functions with python paver functions

Deprecated rake functions issue a warning and then call paver
replacements

Bring Paver commands up to date with master for servers, assets, and docs.
Revert deprecation of quality, tests, and i18n for a future pull request.
Deprecate workspace migration
This commit is contained in:
David Glance
2014-01-13 20:45:11 +08:00
committed by Will Daly
parent b23e9fb62f
commit df2e410f2a
43 changed files with 1029 additions and 537 deletions

View File

@@ -482,7 +482,7 @@ pip install -r $BASE/edx-platform/requirements/edx/pre.txt
output "Installing edX requirements"
# Install prereqs
cd $BASE/edx-platform
rake install_prereqs
paver install_prereqs
# Final dependecy
output "Finishing Touches"
@@ -490,7 +490,7 @@ cd $BASE
pip install argcomplete
cd $BASE/edx-platform
bundle install
rake install_prereqs
paver install_prereqs
mkdir -p "$BASE/log"
mkdir -p "$BASE/db"
@@ -523,7 +523,7 @@ if [[ ! $quiet ]]; then
To start the Django on port 8000
$ rake lms
$ paver lms
Or to start Django on a different <port#>

View File

@@ -1 +1 @@
rake lms
paver lms

View File

@@ -132,11 +132,11 @@ Connect to your virtual machine with "vagrant ssh".
Some examples you can use from your virtual machine:
- Start Learning management system (LMS):
$ rake lms[cms.dev,0.0.0.0:8000]
$ paver lms --settings=cms.dev
=> http://${MY_IP}:8000/
- Start Studio:
$ rake cms[dev,0.0.0.0:8001]
$ paver studio --settings=dev
=> http://${MY_IP}:8001/
See the README for more.