Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 682 Bytes

README.md

File metadata and controls

53 lines (36 loc) · 682 Bytes

Prerequisites

This project was set up with yarn and poetry.

Installation

Install client dependencies:

$ cd client
$ yarn install

Install server dependencies:

$ cd server
$ poetry install --no-root

Usage

Development

Start the webpack dev server:

$ cd client
$ yarn start

Start the flask app in dev mode:

$ cd server
$ poetry run flask run

Production

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