mirror of
https://github.com/koush/scrypted.git
synced 2026-02-07 07:52:12 +00:00
8 lines
305 B
TypeScript
8 lines
305 B
TypeScript
import { createLocallyManagedTunnel, runLocallyManagedTunnel } from '../src/cloudflared-local-managed';
|
|
|
|
async function main() {
|
|
const jsonContents = await createLocallyManagedTunnel('test.scrypted.io')
|
|
await runLocallyManagedTunnel(jsonContents, 'http://127.0.0.1:49725', '/tmp/work');
|
|
}
|
|
|
|
main(); |