From 803021a85c2026711f1c81a1c1465bcad1a1a82e Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sun, 5 Jun 2016 18:58:10 +0200 Subject: [PATCH] add rest framework --- nextcloudappstore/settings.py | 1 + requirements.txt | 2 ++ 2 files changed, 3 insertions(+) diff --git a/nextcloudappstore/settings.py b/nextcloudappstore/settings.py index 87bbc56a53..aa0485fca5 100644 --- a/nextcloudappstore/settings.py +++ b/nextcloudappstore/settings.py @@ -21,6 +21,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Application definition INSTALLED_APPS = [ + 'rest_framework', 'nextcloudappstore.core', 'nextcloudappstore.api', 'nextcloudappstore.website', diff --git a/requirements.txt b/requirements.txt index 018ed45b0e..887116b45f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,3 @@ Django>=1.9.6,<1.10 +djangorestframework==3.3.3 +Markdown==2.6.6