Create service dockerising stuff

This commit is contained in:
Emma
2023-05-04 20:04:06 -06:00
parent a910783882
commit cd3f653f3f
20 changed files with 194 additions and 30 deletions

View File

@@ -0,0 +1,10 @@
import { CGGService } from 'cgg/Application.ts';
import { Router } from 'oak';
const app = new CGGService({ prefix: '/game-systems' });
app.route(new Router());
app.start();
console.log('User service running on ' + Deno.args.at(0));