diff --git a/ADR/2020_02_25_data_management.png b/ADR/2020_02_25_data_management.png deleted file mode 100644 index cb84b1903da5b385a4f8762ad63ef9beb4409f8b..0000000000000000000000000000000000000000 Binary files a/ADR/2020_02_25_data_management.png and /dev/null differ diff --git a/ADR/2020_02_25_new_api_architecture.png b/ADR/2020_02_25_new_api_architecture.png deleted file mode 100644 index 6bd81cc07eb939ce544f9c207de42d470727c805..0000000000000000000000000000000000000000 Binary files a/ADR/2020_02_25_new_api_architecture.png and /dev/null differ diff --git a/ADR/new_data_processing.png b/ADR/new_data_processing.png deleted file mode 100644 index 33fac5c34c91c183e2dcb0fd0b0d1cdd6c1f4f3a..0000000000000000000000000000000000000000 Binary files a/ADR/new_data_processing.png and /dev/null differ diff --git a/ADR/v8_graph_data_model.png b/ADR/v8_graph_data_model.png deleted file mode 100644 index 17093dd6e66eb155f21e1e4d9b1bb25486247792..0000000000000000000000000000000000000000 Binary files a/ADR/v8_graph_data_model.png and /dev/null differ diff --git a/README.md b/README.md deleted file mode 100644 index 98bae6c850cbd17f639b1143899b1a3d4773c73c..0000000000000000000000000000000000000000 --- a/README.md +++ /dev/null @@ -1,36 +0,0 @@ -### Clone the repository -~~~ -git clone https://git.embl.de/yelmoubayed/new-dp-service.git -cd <repository> -~~~ - -### Create a virtual environment to isolate our package dependencies locally -~~~ -python3 -m venv env -~~~ - -~~~ -source env/bin/activate # On Windows use `env\Scripts\activate` -~~~ - -### Install Django, Django REST framework and neomodel into the virtual environment -~~~ -pip install django -~~~ -~~~ -pip install djangorestframework -~~~ -~~~ -pip install neomodel -~~~ - -### Django common command lines - -When you make changes to your models, your database needs to understand how these changes might affect the database. This command automatically makes files that document these changes. -~~~ -python manage.py makemigrations -~~~ -This command you'll probably run the most of all commands. It means to run a emulated server on your local computer. -~~~ -python manage.py runserver -~~~