mirror of
https://github.com/PostHog/posthog.git
synced 2024-12-01 04:12:23 +01:00
21b195a0c6
* Remove unused dependencies * Remove more deps * add reselect back in * Add cypress terminal back in * install cypress terminal on the fly * combine
10 lines
425 B
Bash
Executable File
10 lines
425 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
dropdb --if-exists posthog_e2e_test
|
|
createdb posthog_e2e_test
|
|
DEBUG=1 DATABASE_URL=postgres://localhost:5432/posthog_e2e_test python manage.py migrate & yarn add cypress-terminal-report
|
|
./bin/start-frontend &
|
|
CYPRESS_BASE_URL=http://localhost:8080 npx cypress open &
|
|
DEBUG=1 TEST=1 DATABASE_URL=postgres://localhost:5432/posthog_e2e_test python manage.py runserver 8080
|
|
yarn remove cypress-terminal-report |