-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(readme): add "Open in Codespaces" button
* feat-dev-container * point to repo and remove extra stuff * specify machine config * point to branch * point to main repo
- Loading branch information
1 parent
d7995e8
commit 4f474bc
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Adopting the default GitHub codespaces-jupyter template as starter | ||
// https://github.com/github/codespaces-jupyter | ||
|
||
{ | ||
"name" : "Sec Parser", | ||
"image": "mcr.microsoft.com/devcontainers/universal:2", | ||
"hostRequirements": { | ||
"cpus": 4 | ||
}, | ||
"waitFor": "onCreateCommand", | ||
"updateContentCommand": "python3 -m pip install -r .devcontainer/requirements.txt", | ||
"postCreateCommand": "", | ||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["./docs/source/notebooks/user_guide.ipynb"] | ||
}, | ||
"vscode": { | ||
"extensions": [ | ||
"ms-toolsai.jupyter", | ||
"ms-python.python" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ipywidgets==7.7.1 | ||
sec-parser | ||
sec_downloader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters