htmengine-traffic-tutorial
htmengine-traffic-tutorial copied to clipboard
bootstrap-datetimepicker from node-client/site is not built
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?
Thanks, I think I can fix this pretty easily.