-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathauto.config.example.ts
More file actions
36 lines (33 loc) · 1.58 KB
/
auto.config.example.ts
File metadata and controls
36 lines (33 loc) · 1.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
// Example auto.config.ts file for Auto Engineer CLI plugin system
// Copy this file to your project root and rename to auto.config.ts
export default {
// List of Auto Engineer packages to load as plugins
plugins: [
'@auto-engineer/narrative',
'@auto-engineer/server-generator-apollo-emmett',
'@auto-engineer/server-implementer',
'@auto-engineer/checks',
'@auto-engineer/generate-react-client',
'@auto-engineer/app-implementer',
'@auto-engineer/component-implementor-react',
],
// Optional: Override command aliases when there are conflicts between packages
// The format is: 'command-alias': '@package-name-that-should-handle-it'
// Each package can expose multiple commands, so we resolve conflicts per command
aliases: {
// Example: If multiple packages register 'check:types':
// 'check:types': '@auto-engineer/checks',
// Example: If both generate-react-client and another package register 'generate:react-client':
// 'generate:react-client': '@auto-engineer/generate-react-client',
},
// Optional: ngrok tunnel for remote access from OnAuto cloud
// When enabled, exposes a public URL that the collaboration server can use
// to communicate with your local pipeline server.
// Can also be enabled at runtime with: auto start --tunnel
tunnel: {
enabled: false,
// authtoken: 'your-ngrok-authtoken', // Or set NGROK_AUTHTOKEN env var
// domain: 'your-custom.ngrok.io', // Optional: use a custom ngrok domain
// token: 'your-bearer-token', // Optional: fixed bearer token (auto-generated if omitted)
},
};