This project was set up with yarn and poetry.
Install client dependencies:
$ cd client
$ yarn install
Install server dependencies:
$ cd server
$ poetry install --no-root
Start the webpack dev server:
$ cd client
$ yarn start
Start the flask app in dev mode:
$ cd server
$ poetry run flask run
Build your static assets with webpack:
$ cd client
$ yarn build
Start the flask app in production mode:
$ cd server
$ FLASK_ENV=production poetry run flask run