Some checks failed
Run Check Script / check (pull_request) Failing after 2m5s
18 lines
854 B
Bash
18 lines
854 B
Bash
#!/bin/bash
|
|
|
|
export BASE_URL=http://localhost:18080
|
|
export FLEET_AUTH_ZITADEL_BASE=https://sso-stg.cb1.nationtech.io
|
|
export FLEET_AUTH_CLIENT_ID=372626218874372917
|
|
export FLEET_AUTH_SCOPE="openid profile email"
|
|
export FLEET_AUTH_LOGOUT_REDIRECT_URI="http://localhost:18080/"
|
|
export FLEET_OPERATOR_COOKIE_KEY_B64=6eKVpj88jwIcmaJajPfohdaIXhSPlfYCrHaOfymTcIWBAIadvhg7NHpMo5vPSMy90vac3cq2liWe1naSgkbaYg==
|
|
export FLEET_AUTH_TRUSTED_AUDIENCES=371639797493596981,371683318111994677,372626218874372917,371639797157987125
|
|
export BASE_URL=http://localhost:18080
|
|
export RUST_LOG=debug
|
|
|
|
cargo watch -- cargo run -p harmony-fleet-operator --features web-frontend -- serve-web \
|
|
--mock \
|
|
--css-from ./style/dist/tailwind.css \
|
|
--live-reload &
|
|
tailwindcss --input style/input.css --output style/dist/tailwind.css --watch
|