mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
- Remove serverless example (it was basically dup of with-postgres) - Add plugin (e.g. postgres) to example name - Update all javascript examples and make sure they work - Cleanup a bit of the ui in nextjs example
19 lines
360 B
JavaScript
19 lines
360 B
JavaScript
const pg = require("pg");
|
|
|
|
// Connect to the database using the DATABASE_URL environment
|
|
// variable injected by Railway
|
|
const pool = new pg.Pool();
|
|
|
|
const go = async () => {
|
|
// Query the database
|
|
const res = await pool.query("SELECT NOW()");
|
|
|
|
// Print the result
|
|
console.log(res.rows[0]);
|
|
|
|
// Close the database connection
|
|
pool.end();
|
|
};
|
|
|
|
go();
|