mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-16 22:48:09 +01:00
chore: add support for devcontainers (#50)
This commit is contained in:
20
.devcontainer/devcontainer.json
Normal file
20
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
|
||||||
|
"name": "Temporal AI Agentic Demo",
|
||||||
|
"features": {
|
||||||
|
"ghcr.io/devcontainers/features/node:1": {},
|
||||||
|
"ghcr.io/devcontainers-extra/features/poetry:2": {},
|
||||||
|
"ghcr.io/devcontainers/features/python:1": {},
|
||||||
|
"ghcr.io/devcontainers-extra/features/temporal-cli:1": {},
|
||||||
|
"ghcr.io/mrsimonemms/devcontainers/tcld:1": {}
|
||||||
|
},
|
||||||
|
"forwardPorts": [
|
||||||
|
5173,
|
||||||
|
7233,
|
||||||
|
8000,
|
||||||
|
8233
|
||||||
|
],
|
||||||
|
"containerEnv": {
|
||||||
|
"VITE_HOST": "0.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,5 +5,6 @@ export default defineConfig({
|
|||||||
plugins: [react()],
|
plugins: [react()],
|
||||||
server: {
|
server: {
|
||||||
open: true,
|
open: true,
|
||||||
|
host: process.env.VITE_HOST ?? 'localhost',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
Reference in New Issue
Block a user