import { Card, CardContent, CardHeader } from '@boring.tools/ui' import { Link, createLazyFileRoute } from '@tanstack/react-router' import { PageWrapper } from '../components/PageWrapper' const Platforms = [ { name: 'Linux', arch: 'x86', svg: '/linux.svg', path: '/cli/linux/bt', filename: 'bt', }, { name: 'Apple Intel', arch: 'Intel', svg: '/apple.svg', path: '/cli/mac-intel/bt', filename: 'bt', }, { name: 'Apple ARM', arch: 'ARM', svg: '/apple.svg', path: '/cli/mac-arm/bt', filename: 'bt', }, { name: 'Windows', arch: 'x86', svg: '/windows.svg', path: '/cli/windows/bt.exe', filename: 'bt.exe', }, ] const Component = () => { return (

CLI

With our CLI you can upload your commits for your changelog in just a few seconds.

Download

{Platforms.map((platform) => { return ( {platform.name} {platform.arch} ) })}

Usage

          bt --changelogId=... --token=bt_...
        

Alternatively, you can use an .env file:

          BT_CHANGELOG_ID=...
          
BT_AUTH_TOKEN=bt_...

If you have not yet created an Access Token, you can do so{' '} here .

) } export const Route = createLazyFileRoute('/cli')({ component: Component, })