Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-analytics-data-api
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-analytics-data-api
Commits
c12902bc
Commit
c12902bc
authored
Sep 04, 2014
by
Clinton Blackburn
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #25 from edx/revert-23-django-upgrade
Revert "Upgraded to Django 1.7"
parents
8f9245c3
f281e653
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
6 deletions
+8
-6
Makefile
+3
-3
README.md
+2
-2
analyticsdataserver/settings/base.py
+1
-0
requirements/base.txt
+2
-1
No files found.
Makefile
View file @
c12902bc
...
...
@@ -4,7 +4,7 @@ COVERAGE = $(ROOT)/build/coverage
PACKAGES
=
analyticsdataserver analytics_data_api
DATABASES
=
default analytics
.PHONY
:
requirements develop clean diff.report view.diff.report quality
migrate
.PHONY
:
requirements develop clean diff.report view.diff.report quality
syncdb
requirements
:
pip install
-q
-r
requirements/base.txt
...
...
@@ -46,8 +46,8 @@ quality:
validate
:
test.requirements test quality
migrate
:
$
(
foreach db_name,
$(DATABASES)
,./manage.py migrate
--noinput
--database
=
$(db_name)
;
)
syncdb
:
$
(
foreach db_name,
$(DATABASES)
,./manage.py
syncdb
--
migrate
--noinput
--database
=
$(db_name)
;
)
loaddata
:
migrate
python manage.py loaddata education_levels problem_response_answer_distribution
--database
=
analytics
...
...
README.md
View file @
c12902bc
...
...
@@ -19,8 +19,8 @@ Getting Started
2.
Setup the databases:
$ ./manage.py migrate --noinput
$ ./manage.py migrate --noinput --database=analytics
$ ./manage.py
syncdb --
migrate --noinput
$ ./manage.py
syncdb --
migrate --noinput --database=analytics
3.
Create a user and authentication token. Note that the user will be created if one does not exist.
...
...
analyticsdataserver/settings/base.py
View file @
c12902bc
...
...
@@ -181,6 +181,7 @@ DJANGO_APPS = (
)
THIRD_PARTY_APPS
=
(
'south'
,
'rest_framework'
,
'rest_framework.authtoken'
,
'rest_framework_swagger'
,
...
...
requirements/base.txt
View file @
c12902bc
Django==1.
7
# BSD License
Django==1.
6.6
# BSD License
Markdown==2.4.1 # BSD
South==1.0 # Apache License
django-model-utils==1.4.0 # BSD
djangorestframework==2.3.5 # BSD
ipython==2.1.0 # BSD
...
...
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