mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-07-12 02:50:41 -07:00
7f00c5fe59
Co-authored-by: Christian Gunderman <gundermanc@google.com>
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { app } from './app.js';
|
|
|
|
const port = parseInt(process.env.PORT || '8080', 10);
|
|
app.listen(port, '0.0.0.0', () => {
|
|
console.log(`Server listening on port ${port}`);
|
|
});
|