These steps will be on Windows
Use the Del-lia.exe app to automatic generation of all the proyect in a custom folder, or:
git clone https://github.com/daniel8rc/hackathon_optimizacion_entregas_material.git
py -3 -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
pipenv install
npm install
npm run development
python main.py
These steps will be on Linux
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
pipenv install
npm install
npm run development or npm run watch
python3 main.py
flask db init
flask db migrate -m "Initial migrate"
flask db upgrade
flask run