mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
9 lines
150 B
Plaintext
9 lines
150 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# pass first argument to WEBPACK_HOT_RELOAD_HOST
|
||
|
[ $# -ge 1 ] && export WEBPACK_HOT_RELOAD_HOST=$1
|
||
|
|
||
|
yarn install
|
||
|
yarn start-https
|