After setting up the python engine configuration and running webapp.py, I run:
npm install .
npm start
I can access localhost:8083 but opening the browser console reveals that bootstrap-datetimepicker.min.js and bootstrap-datetimepicker.min.css are 404'd. I fixed it by doing:
cd site/bower_components/eonasdan-bootstrap-datetimepicker
composer install
npm install
grunt uglify:production
grunt less
rm -rf node_modules vendor bower_components
Perhaps consider adding the build dir to the project?
After setting up the python engine configuration and running
webapp.py
, I run:I can access localhost:8083 but opening the browser console reveals that
bootstrap-datetimepicker.min.js
andbootstrap-datetimepicker.min.css
are 404'd. I fixed it by doing:Perhaps consider adding the build dir to the project?