mirror of
https://github.com/benjamin-wilson/public-pool.git
synced 2025-04-12 13:59:25 +02:00
directory
This commit is contained in:
parent
76319d9625
commit
0eaffaf9f7
13
src/main.ts
13
src/main.ts
@ -18,17 +18,14 @@ async function bootstrap() {
|
||||
let options = {};
|
||||
const secure = process.env.API_SECURE?.toLowerCase() == 'true';
|
||||
if (secure) {
|
||||
|
||||
|
||||
const currentDirectory = process.cwd();
|
||||
options = {
|
||||
https: {
|
||||
key: readFileSync('./secrets/key.pem'),
|
||||
cert: readFileSync('./secrets/cert.pem'),
|
||||
key: readFileSync(`${currentDirectory}/secrets/key.pem`),
|
||||
cert: readFileSync(`${currentDirectory}/secrets/cert.pem`),
|
||||
}
|
||||
};
|
||||
|
||||
} else {
|
||||
|
||||
}
|
||||
|
||||
const app = await NestFactory.create<NestFastifyApplication>(AppModule, new FastifyAdapter(options));
|
||||
@ -48,8 +45,8 @@ async function bootstrap() {
|
||||
//Taproot
|
||||
bitcoinjs.initEccLib(ecc);
|
||||
|
||||
await app.listen(process.env.PORT, '0.0.0.0', () => {
|
||||
console.log(`${secure ? 'https' : 'http'} listening on port ${process.env.PORT}`);
|
||||
await app.listen(process.env.PORT, '0.0.0.0', (err, address) => {
|
||||
console.log(`API listening on ${address}`);
|
||||
});
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user