- Add Next.js app structure with base configs, linting, and formatting - Implement LiveKit Meet page, types, and utility functions - Add Docker, Compose, and deployment scripts for backend and token server - Provide E2E and smoke test scaffolding with Puppeteer and Playwright helpers - Include CSS modules and global styles for UI - Add postMessage and studio integration utilities - Update package.json with dependencies and scripts for development and testing
15 lines
422 B
Bash
Executable File
15 lines
422 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
# Start Google Chrome stable with remote debugging on port 9222 and a persistent profile
|
|
USER_DATA_DIR="$HOME/.config/avanzacast-chrome-profile"
|
|
mkdir -p "$USER_DATA_DIR"
|
|
|
|
exec /usr/bin/google-chrome-stable \
|
|
--remote-debugging-port=9222 \
|
|
--user-data-dir="$USER_DATA_DIR" \
|
|
--no-default-browser-check \
|
|
--disable-extensions \
|
|
--disable-first-run-ui \
|
|
--disable-component-update \
|
|
"$@" &
|
|
|