mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-07 20:08:06 +00:00
bd8f003322
* Gracefully shutdown server * Forbid lint warnings * Avoid setting subgraph path in template contex in codegen
22 lines
639 B
TypeScript
22 lines
639 B
TypeScript
//
|
|
// Copyright 2021 Vulcanize, Inc.
|
|
//
|
|
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import Handlebars from 'handlebars';
|
|
import { Writable } from 'stream';
|
|
|
|
const TEMPLATE_FILE = './templates/server-template.handlebars';
|
|
|
|
/**
|
|
* Writes the server file generated from a template to a stream.
|
|
* @param outStream A writable output stream to write the server file to.
|
|
*/
|
|
export function exportServer (outStream: Writable): void {
|
|
const templateString = fs.readFileSync(path.resolve(__dirname, TEMPLATE_FILE)).toString();
|
|
const template = Handlebars.compile(templateString);
|
|
const server = template({});
|
|
outStream.write(server);
|
|
}
|