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