Skip to content

Commit 04ac21c

Browse files
authored
feat: add scout to blink init (#98)
1 parent ff80152 commit 04ac21c

17 files changed

+1504
-43
lines changed

packages/blink/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blink",
3-
"version": "1.1.33",
3+
"version": "1.1.34",
44
"description": "Blink is a tool for building and deploying AI agents.",
55
"type": "module",
66
"bin": {

packages/blink/src/cli/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import { version } from "../../package.json";
2525
import build from "./build";
2626
import deploy from "./deploy";
2727
import setupSlackApp from "./setup-slack-app";
28+
import setupGithubApp from "./setup-github-app";
2829
import * as clack from "@clack/prompts";
2930

3031
// This polyfill is because older versions of NodeJS don't have a global crypto object.
@@ -86,6 +87,11 @@ setupCommand
8687
.description("Set up Slack app integration")
8788
.action(setupSlackApp);
8889

90+
setupCommand
91+
.command("github-app [directory]")
92+
.description("Set up GitHub App integration")
93+
.action(setupGithubApp);
94+
8995
program
9096
.command("telemetry [boolean]")
9197
.description("Enable or disable telemetry.");

packages/blink/src/cli/init-templates/index.ts

Lines changed: 17 additions & 1 deletion
Large diffs are not rendered by default.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# dependencies
2+
node_modules
3+
4+
# config and build
5+
.blink/*
6+
!.blink/config.json
7+
8+
# dotenv environment variables file
9+
.env
10+
.env.*
11+
12+
# Finder (MacOS) folder config
13+
.DS_Store

0 commit comments

Comments
 (0)