mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
12 lines
454 B
TypeScript
12 lines
454 B
TypeScript
import { Command, ParsedArgs } from '../utils/mod.ts';
|
|
|
|
export const create = new Command('new', 'Create a new tribe.')
|
|
.option('-c --custom-domain', {
|
|
description: 'Do not use a subdomain of the tribes server; instead, use a custom domain.',
|
|
})
|
|
.option('-s --subdomain', {
|
|
description: 'Use a subdomain of the tribes server to host the new Ditto instance.',
|
|
})
|
|
.setAction((args: ParsedArgs) => {
|
|
// const ssh = sshConnect();
|
|
});
|