Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
1f9450f0
Commit
1f9450f0
authored
Jan 30, 2014
by
David Ormsbee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove setup_xblock.sh script (no longer necessary).
parent
1b63a7c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
34 deletions
+0
-34
utils/setup_xblock.sh
+0
-34
No files found.
utils/setup_xblock.sh
deleted
100755 → 0
View file @
1b63a7c8
#!/bin/bash
if
[
!
-d
'apps'
]
||
[
!
-f
'manage.py'
]
;
then
echo
"Sorry; this must be run from the top-level of the tim working tree"
exit
1
;
fi
echo
"Ok, installing XBlocks..."
git clone https://github.com/edx/XBlock.git
MODULES
=
`
find XBlock/
-iname
'setup.py'
|
grep
-v
prototype
`
# Installing XBlock base package is a prerequisite for the rest working
cd
XBlock
pip install
-e
.
cd
..
# This will install XBlock base twice, but that's ok
for
dir
in
$MODULES
;
do
mod_work_dir
=
`
dirname
$dir
`
cd
$mod_work_dir
pip install
-e
.
if
[
!
$?
]
;
then
# If anything goes wrong
exit
187
# then die violently
fi
cd
-
done
cd
apps/openassessment_compose
pip install
-e
.
cd
-
echo
"You can run the workbench by saying:"
echo
"cd XBlock; python manage.py runserver"
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