mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
8 lines
96 B
Bash
Executable File
8 lines
96 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
rm -rf frontend/.cache
|
|
cd frontend
|
|
yarn install
|
|
yarn build-editor
|
|
yarn start |