Code with codespaces feedback #442
Unanswered
Chummy21
asked this question in
Code with Codespaces
Replies: 3 comments
|
You can run just two codespaces at a time. |
0 replies
|
As a relative beginner, the fact that each step required creating a new codespace, only to be followed by the warning that too many code spaces were running, made no sense whatsoever -- I have no idea what was being demonstrated. |
0 replies
|
I agree. I feel like I am just following instructions but am not internalizing what is actually going on. I'm coming from coding in R and I use it for data analysis, not programming - so I feel like I'm missing some vital information here. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Nice work! 🎉 You created a codespace with a custom image!
You can customize your codespace by adding VS code extensions, adding features, setting host requirements, and much more.
Let's customize some settings in the .devcontainer.json file!
⌨️ Activity: Add customizations to the devcontainer file
Navigate to the .devcontainer/devcontainer.json file.
Add the following customizations to the body of the file before the last }.
,
// Add the IDs of extensions you want installed when the container is created.
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot"
]
},
"codespaces": {
"openFiles": [
"codespace.md"
]
}
}
Click Commit changes and then select Commit changes directly to the main branch.
Create a new codespace by navigating to the landing page of your repository.
After following instructions for step three,
on getting to ( 4. Create a new codespace by navigating to the landing page of your repository.) it says {maximum running codespaces reached}
you have too many running code spaces. You will need to stop some before you start a new codespace. I couldn't continue from here. Please, kindly see to this.
Thank you.
All reactions