You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install node modules to compile assets npm install.
Install bower packages bower install.
Copy config.py.default to config.py.
Make changes to config.py as required.
Create a symlink to bower_components folder inside frontend : cd frontend && ln -s ../bower_components/ bower_components.
Migrate DB (uses sqlite by default. Can be configured in config.py)
python script.py db init
python script.py db migrate
python script.py db upgrade
In separate terminal, cd into the starter-kit directory and run gulp clean && gulp to compile static assets and start a livereload server.
Then run python script.py runserver
Open localhost:5000 in browser.
To add your own routes, open backend/app.py and start adding your own urls and responses. You can spin off your routes in new files. Just don't forget to import your files in app.py.
About
Flask application with complete integration with gulp build system