Skip to content
Snippets Groups Projects
Commit 929b382f authored by Yorgo EL MOUBAYED's avatar Yorgo EL MOUBAYED
Browse files

Deleted ADR/2020_02_25_data_management.png,...

Deleted ADR/2020_02_25_data_management.png, ADR/2020_02_25_new_api_architecture.png, ADR/new_data_processing.png, ADR/v8_graph_data_model.png, README.md files
parent 0be3e411
No related branches found
No related tags found
No related merge requests found
ADR/2020_02_25_data_management.png

36 KiB

ADR/2020_02_25_new_api_architecture.png

274 KiB

ADR/new_data_processing.png

88.9 KiB

ADR/v8_graph_data_model.png

393 KiB

### 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
~~~
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment