Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.devcontainer.json 669 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  1. // Codespaces environment for docs.github.com
  2. // For format details, see https://aka.ms/vscode-remote/devcontainer.json
  3. {
  4. "name": "docs.github.com",
  5. "settings": {
  6. "terminal.integrated.shell.linux": "/bin/bash",
  7. "cSpell.language": ",en"
  8. },
  9. // Install pre-requisites and run a build to ensure we are ready to start serving docs.github.com locally (via `npm start`)
  10. "postCreateCommand": "npm ci && npm run build",
  11. "forwardPorts": [4000],
  12. // Visual Studio Code extensions which help authoring for docs.github.com.
  13. "extensions": [
  14. "yzhang.markdown-all-in-one",
  15. "streetsidesoftware.code-spell-checker"
  16. ]
  17. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...