0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/bin/start-frontend

9 lines
144 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash
set -e
# pass first argument to WEBPACK_HOT_RELOAD_HOST
[ $# -ge 1 ] && export WEBPACK_HOT_RELOAD_HOST=$1
yarn install
2020-03-14 15:53:14 +01:00
yarn start