forked from PostHog/wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbin.ts
More file actions
202 lines (191 loc) · 5.58 KB
/
bin.ts
File metadata and controls
202 lines (191 loc) · 5.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#!/usr/bin/env node
import { satisfies } from 'semver';
import { red } from './src/utils/logging';
import yargs from 'yargs';
import { hideBin } from 'yargs/helpers';
import chalk from 'chalk';
const NODE_VERSION_RANGE = '>=18.17.0';
// Have to run this above the other imports because they are importing clack that
// has the problematic imports.
if (!satisfies(process.version, NODE_VERSION_RANGE)) {
red(
`PostHog wizard requires Node.js ${NODE_VERSION_RANGE}. You are using Node.js ${process.version}. Please upgrade your Node.js version.`,
);
process.exit(1);
}
import { runMCPInstall, runMCPRemove } from './src/mcp';
import type { CloudRegion, WizardOptions } from './src/utils/types';
import { runWizard } from './src/run';
import { runEventSetupWizard } from './src/nextjs/event-setup';
import {
readEnvironment,
isNonInteractiveEnvironment,
} from './src/utils/environment';
import path from 'path';
import clack from './src/utils/clack';
if (isNonInteractiveEnvironment()) {
clack.intro(chalk.inverse(`PostHog Wizard`));
clack.log.error(
'This installer requires an interactive terminal (TTY) to run.\n' +
'It appears you are running in a non-interactive environment.\n' +
'Please run the wizard in an interactive terminal.',
);
process.exit(1);
}
if (process.env.NODE_ENV === 'test') {
void (async () => {
try {
const { server } = await import('./e2e-tests/mocks/server.js');
server.listen({
onUnhandledRequest: 'bypass',
});
} catch (error) {
// Mock server import failed - this can happen during non-E2E tests
}
})();
}
yargs(hideBin(process.argv))
.env('POSTHOG_WIZARD')
// global options
.options({
debug: {
default: false,
describe: 'Enable verbose logging\nenv: POSTHOG_WIZARD_DEBUG',
type: 'boolean',
},
region: {
describe: 'PostHog cloud region\nenv: POSTHOG_WIZARD_REGION',
choices: ['us', 'eu'],
type: 'string',
},
default: {
default: true,
describe:
'Use default options for all prompts\nenv: POSTHOG_WIZARD_DEFAULT',
type: 'boolean',
},
signup: {
default: false,
describe:
'Create a new PostHog account during setup\nenv: POSTHOG_WIZARD_SIGNUP',
type: 'boolean',
},
})
.command(
['$0'],
'Run the PostHog setup wizard',
(yargs) => {
return yargs.options({
'force-install': {
default: false,
describe:
'Force install packages even if peer dependency checks fail\nenv: POSTHOG_WIZARD_FORCE_INSTALL',
type: 'boolean',
},
'install-dir': {
describe:
'Directory to install PostHog in\nenv: POSTHOG_WIZARD_INSTALL_DIR',
type: 'string',
},
integration: {
describe: 'Integration to set up',
choices: ['nextjs', 'astro', 'react', 'svelte', 'react-native'],
type: 'string',
},
});
},
(argv) => {
const options = { ...argv };
void runWizard(options as unknown as WizardOptions);
},
)
.command(
'event-setup',
'Run the event setup wizard',
(yargs) => {
return yargs.options({
'install-dir': {
describe:
'Directory to run the wizard in\nenv: POSTHOG_WIZARD_INSTALL_DIR',
type: 'string',
},
});
},
(argv) => {
const finalArgs = {
...argv,
...readEnvironment(),
} as any;
let resolvedInstallDir: string;
if (finalArgs.installDir) {
if (path.isAbsolute(finalArgs.installDir)) {
resolvedInstallDir = finalArgs.installDir;
} else {
resolvedInstallDir = path.join(process.cwd(), finalArgs.installDir);
}
} else {
resolvedInstallDir = process.cwd();
}
const wizardOptions: WizardOptions = {
debug: finalArgs.debug ?? false,
installDir: resolvedInstallDir,
cloudRegion: finalArgs.region as CloudRegion | undefined,
default: finalArgs.default ?? false,
signup: finalArgs.signup ?? false,
forceInstall: false,
};
void runEventSetupWizard(wizardOptions);
},
)
.command('mcp <command>', 'MCP server management commands', (yargs) => {
return yargs
.command(
'add',
'Install PostHog MCP server to supported clients',
(yargs) => {
return yargs.options({
local: {
default: false,
describe:
'Add local development MCP server (http://localhost:8787)',
type: 'boolean',
},
});
},
(argv) => {
const options = { ...argv };
void runMCPInstall(
options as unknown as {
signup: boolean;
region?: CloudRegion;
local?: boolean;
},
);
},
)
.command(
'remove',
'Remove PostHog MCP server from supported clients',
(yargs) => {
return yargs.options({
local: {
default: false,
describe:
'Remove local development MCP server (http://localhost:8787)',
type: 'boolean',
},
});
},
(argv) => {
const options = { ...argv };
void runMCPRemove(options as { local?: boolean });
},
)
.demandCommand(1, 'You must specify a subcommand (add or remove)')
.help();
})
.help()
.alias('help', 'h')
.version()
.alias('version', 'v')
.wrap(process.stdout.isTTY ? yargs.terminalWidth() : 80).argv;