Create venv
python3 -m venv venv/
Enable de environment
source venv/bin/activate
you must enable virtualenv and later do this command to install dependencies:
pip install -r ./requirements.txt
if you want to update the dependencies yu must to do this command:
pip freeze > ./requirements.txt
go to app folder and run
yarn
then:
yarn webpack
if you want to watch
yarn webpack --watch
if yoou facing problems with dependencies do this:
rm -r venv/
python3 -m venv venv/
pip install -r ./requirements.txt
python wsgi.py
python server.py freeze