mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
be7a345a61
* Fix temporary token issue * only pass params once * HTTPS locally
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
|