mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-07 04:31:24 +01:00
9 lines
150 B
Bash
Executable File
9 lines
150 B
Bash
Executable File
#!/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
|