set application name

This commit is contained in:
Paul Trowbridge 2023-10-04 08:37:51 -04:00
parent 86613ab0d6
commit af05489171
1 changed files with 8 additions and 12 deletions

20
api.ts
View File

@ -1,10 +1,12 @@
import { Application, Router } from 'https://deno.land/x/oak/mod.ts';
import { Client } from "https://deno.land/x/postgres@v0.17.0/mod.ts";
import { load } from "https://deno.land/std/dotenv/mod.ts";
const app = new Application();
const router = new Router();
//---------dotenv info-------------
import { load } from "https://deno.land/std/dotenv/mod.ts";
const env = await load();
const hostname = env["HOSTNAME"];
const port = env["PORT"];
@ -13,6 +15,7 @@ const password = env["PASSWORD"];
const database = env["DATABASE"];
const app_port = env["APP_PORT"];
// Configure database connection
const client = new Client({
hostname:hostname
@ -20,6 +23,7 @@ const client = new Client({
,user: user
,password:password
,database:database
,applicationName: "pricing guidance"
});
await client.connect();
@ -35,22 +39,14 @@ router.get('/price_info/part_cust/:partcode/:customer', async (ctx) => {
//console.log(partcode)
//console.log(customer)
const result = await client.queryObject({args: [partcode, customer], text: query} );
for (const row of result.rows) {
if (typeof row.season === 'object' && row.season !== null) {
for (const year in row.season) {
console.log(`${year}: ` + row.season[year].price_usd)
}
}
}
ctx.response.body = result.rows;
});
app.use(router.routes());
app.use(router.allowedMethods());
// Start the server
console.log('Server is running on http://localhost:8085');
await app.listen({ port: 8085 });
console.log('Server is running on http://usmidsap02:8090');
await app.listen({ port: 8090 });