From da571a453e10c0c6502812447a344194feb75499 Mon Sep 17 00:00:00 2001 From: Nicolas Setton Date: Wed, 19 Jul 2017 13:54:44 -0400 Subject: [PATCH] Add REQUIREMENTS.txt and bare-bones instructions --- README.md | 18 ++++++++++++++++-- REQUIREMENTS.txt | 2 ++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 REQUIREMENTS.txt diff --git a/README.md b/README.md index 895dc3a..41bee51 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,16 @@ -# langserv -prototype server for creating interactive "try SPARK / try Ada" webpages +# code_examples_server + +Prototype server for creating interactive "try SPARK / try Ada" webpages + +## Getting started + +To setup, do this: +```sh +virtualenv env +pip install -r REQUIREMENTS.txt +``` + +To launch the server, do this: +```sh +./manage.py runserver +``` diff --git a/REQUIREMENTS.txt b/REQUIREMENTS.txt new file mode 100644 index 0000000..6e5370e --- /dev/null +++ b/REQUIREMENTS.txt @@ -0,0 +1,2 @@ +django +djangorestframework