bytemate / chatapi-single

Simple and powerful ChatGPT-API-Server
534 stars 75 forks source link

Fix `PORT` type to Number #21

Closed wengchaoxi closed 1 year ago

wengchaoxi commented 1 year ago

fix #20

The port must be number, but the process.env.PORT is a string.

// https://github.com/implydata/express-serve-static-core/blob/0b54183d98b43aeb0a7546070e5d4b10ef6bb0c4/express-serve-static-core.d.ts#L1025
listen(port: number, hostname: string, callback?: () => void): http.Server;
fuergaosi233 commented 1 year ago

Thx