The official website for the Carberra YouTube channel.
npm install
git config core.hooksPath .githooksCreate a .env file in the project root:
YOUTUBE_API_KEY=your_api_key_hereYou will need a Google API key with the YouTube Data API v3 enabled.
npm run devnpm run format # Fix formatting
npm run format:check # Check formattingBoth Podman and Docker are supported. The examples below use Podman — for Docker, replace podman with docker.
Multi-stage build that compiles the app and runs it with Express:
podman build -t carberra-website .
podman run -d -p 3000:3000 --env-file .env --name carberra-website carberra-websiteThe production site will be available at http://localhost:3000.