Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"name": "Tutorial: vonage_video_ios_app-theme-customization",
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm",
"workspaceFolder": "/workspaces/tutorial-interactive_tutorials/tutorials/vonage_video_ios_app-theme-customization",
"waitFor": "onCreateCommand",
"updateContentCommand": "npm install",
"postCreateCommand": "",
"postAttachCommand": "nohup ./node_modules/.bin/http-server steps -p 1234 --cors -c-1 > /dev/null 2>&1 & cd project && (sleep 4 && echo -e \"\\n\\n🚀 APPLICATION READY:\\nhttps://${CODESPACE_NAME}-3000.app.github.dev\\n\\n\" &) && (nohup sh -c \"sleep 5 && gh codespace ports visibility 3000:public -c $CODESPACE_NAME\" > /dev/null 2>&1 &) && npm start",
"forwardPorts": [
"1234",
"3000"
],
"portsAttributes": {
"1234": {
"label": "Tutorial Guide",
"onAutoForward": "openPreview"
},
"3000": {
"label": "My Backend Service",
"onAutoForward": "notify",
"visibility": "public"
}
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"customizations": {
"vscode": {
"extensions": [],
"settings": {
"editor.formatOnSave": true,
"files.exclude": {
"node_modules": true,
"dist": true,
"steps": true,
".devcontainer": true,
".vscode": true,
"package.json": true,
"package-lock.json": true,
"tutorial-config.json": true,
"tsconfig.json": true,
"astro.config.mjs": true,
".git": true,
".DS_Store": true,
"project/setup-project.js": true,
"vonage-toolbar": true,
"src": true,
"markdoc.config.mjs": true,
".astro": true,
"README.md": true,
"public": true,
"download-toolbar.js": true
},
"terminal.integrated.cwd": "${workspaceFolder}/project"
}
},
"codespaces": {
"openFiles": []
}
}
}
Loading