6ecb2c366f
Publish snapshot / snapshot (push) Successful in 1m2s
[fix] default parameter run records parameters in session for replay[fix] remove default parameters for several cubes
20 lines
564 B
JavaScript
20 lines
564 B
JavaScript
import { Manifest } from '@bitsquare/nopy-cube';
|
|
import { z } from 'zod';
|
|
|
|
export default Manifest({
|
|
id: 'caddy',
|
|
name: 'Install Caddy webserver',
|
|
dependencies: () => [],
|
|
schema: z.object({
|
|
// tls /path/to/cert.pem /path/to/key.pem
|
|
TLS: z
|
|
.string()
|
|
.default('')
|
|
.describe(`
|
|
<empty-string> --> enabled and automatically managed
|
|
internal --> use Caddy custom root CA for self-signed certs (for testing purpose)
|
|
/path/to/cert /path/to/key --> Provide custom certificates
|
|
`),
|
|
}),
|
|
});
|