conda update -n base -c defaults conda
conda create -n tale python==3.11
conda activate tale
pip install -r requirements.txt
Help > Check for Updates...
Draw.io Integration Python Pylint autopep8 Mypy Type Checker
open a python file (e.g. source/content.py) click on bottom right tray, right of python select tale conda environment
checkout to... >dev
pull
branch > create branch from > dev
feature/[your feature name]
Commit your changes Go to github.com > select your branch > Create pull request Select destination of pull request to dev Requets pull request
On github.com Select pull requests > click on one of the pull requests Files changed > Do your code review
In VS Code Branch > Delete branch ... > feature/[your feature name]
Using the TALE Project virtual environment only django should be necessary to install
$ pip install Django==4.2.7
Then you can run the server by
$ python manage.py runserver
It could be that you need to migrate. For this run
$ python manage.py makemigrations
$ python manage.py migrate