blob: e5f9123a341a820fc822319d663704d3cf0d7cb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# amt-jb
This refers to the Django carer that handles DB models
## Environment
- amt-jb-carer: (amt-jb-carer-venv) Python 3.13.7
```shell
python3.13 -m venv /root/amt-jb-carer-venv
source /root/amt-jb-carer-venv/bin/activate
pip install -U pip setuptools wheel
cd ~/amt-jb/carer/
pip install -r requirements.txt
python3 manage.py makemigrations mtwerk --settings=carer.settings.production
python3 manage.py migrate mtwerk --settings=carer.settings.production
```
|