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
7a464345
Commit
7a464345
authored
May 29, 2015
by
Ben Patterson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #705 from edx/benp/pr-701-update
Use docker
parents
620f55f8
5fc3c329
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
7 deletions
+33
-7
.travis.yml
+24
-0
Makefile
+7
-6
README.rst
+1
-0
scripts/download-nltk-data.sh
+1
-1
No files found.
.travis.yml
View file @
7a464345
addons
:
apt
:
packages
:
-
aspell
-
aspell-en
-
g++
-
gcc
-
git
-
gfortran
-
libblas3gf
-
libblas-dev
-
liblapack3gf
-
liblapack-dev
-
libatlas-base-dev
-
libfontconfig1
-
libmysqlclient-dev
-
libxml2-dev
-
libxslt1-dev
-
nodejs
-
python2.7
-
python2.7-dev
-
python-pip
-
python-software-properties
language
:
python
sudo
:
false
python
:
-
"
2.7"
install
:
...
...
Makefile
View file @
7a464345
...
...
@@ -2,17 +2,17 @@ all: install test
.PHONY
:
install test
# not used by travis
install-system
:
sudo
apt-get update
-qq
sudo
xargs
-a
apt-packages.txt apt-get install
-qq
--fix-missing
# not used by travis
install-node
:
sudo
add-apt-repository
-y
ppa:chris-lea/node.js
sudo
apt-get update
-qq
sudo
apt-get install
-qq
nodejs
install-wheels
:
./scripts/install-wheels.sh
...
...
@@ -20,9 +20,8 @@ install-wheels:
install-python
:
./scripts/install-python.sh
install-js
:
sudo
npm config
set
loglevel warn
npm config
set
loglevel warn
npm install
install-nltk-data
:
...
...
@@ -39,11 +38,13 @@ javascript:
install-test
:
pip install
-q
-r
requirements/test.txt
install-sys-requirements
:
install-system install-node
install-dev
:
sudo
gem install sass
gem install sass
pip install
-q
-r
requirements/dev.txt
install
:
install-
system install-node install-
wheels install-python install-js install-nltk-data install-test install-dev javascript
install
:
install-wheels install-python install-js install-nltk-data install-test install-dev javascript
test
:
./scripts/test.sh
README.rst
View file @
7a464345
...
...
@@ -47,6 +47,7 @@ To install all dependencies:
.. code:: bash
make install-sys-requirements
make install
make install-dev
...
...
scripts/download-nltk-data.sh
View file @
7a464345
#!/usr/bin/env bash
PYTHON
=
`
which python
`
sudo
$PYTHON
-m
nltk.downloader stopwords maxent_treebank_pos_tagger wordnet
-d
/usr/local/share/nltk_data
--quiet
$PYTHON
-m
nltk.downloader stopwords maxent_treebank_pos_tagger wordnet
--quiet
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