meta: move config files to typescript

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I60de4abb5b81c4b14d95d7b6f1da8aa66a6a6964
This commit is contained in:
raf 2026-02-01 17:17:16 +03:00
commit ad491d69e8
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
5 changed files with 67 additions and 46 deletions

View file

@ -3,8 +3,24 @@ import type { Config } from './src/types';
const config: Config = {
server: {
port: 3000,
// host: '0.0.0.0', // Uncomment to bind to all interfaces (default is localhost only)
},
// Dashboard configuration (optional)
// dashboard: {
// enabled: true,
// // Authentication options (choose one):
// auth: {
// // Option 1: Basic HTTP authentication
// type: 'basic',
// username: 'admin',
// password: 'changeme',
// // Option 2: Bearer token authentication
// // type: 'token',
// // token: 'your-secret-token-here',
// },
// },
repositories: [
// Leave empty to accept webhooks from any repo.
// { owner: "myorg", repo: "myrepo" },