mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-28 00:52:08 +00:00
c9a7533f2c
* Add configuration for Codespaces This adds a simple Codespaces configuration, `.devcontainer/devcontainer.json`, to the project. It uses v3.1 of the .NET Core SDK from Docker Hub, installs Python 3 and `mkdocs` to support building the docs and includes useful VS Code extensions for working on the project. * Add VS Code tasks for running tests and building the docs This improves the Visual Studio Code tasks definitions (`.vscode/ tasks.json`), adding pre-defined tasks for running unit and convention tests and building the docs. Codespaces magic means that, when you build the docs, the port will automatically be opened so you can view the docs in real time at `localhost:4000`.
4 lines
74 B
Bash
4 lines
74 B
Bash
apt-get update
|
|
apt-get install -y python3 python3-pip
|
|
pip3 install mkdocs
|