We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e36b4ce commit 5b66bb3Copy full SHA for 5b66bb3
dev-demo/.env.sample
@@ -5,6 +5,7 @@ NODE_ENV=development
5
OPENAI_API_KEY=1
6
HEAVY_DEBUG=
7
HEAVY_DEBUG_QUERY=
8
+PORT=3000
9
10
DATABASE_FILE=./db.sqlite
11
DATABASE_FILE_URL=file:${DATABASE_FILE}
dev-demo/index.ts
@@ -289,7 +289,7 @@ export const admin = new AdminForth({
289
290
const app = express()
291
app.use(express.json());
292
-const port = 30000;
+const port = process.env.PORT || 3000;
293
294
(async () => {
295
console.log('🅿️🅿️🅿️ 🅿️Bundling AdminForth...');
0 commit comments