-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: migrate config to devcontainer (#242)
* ci: Renamed `.config` to `.devcontainer` * ci: Added first approach of `devcontainer.json` * ci: Replaced previous references to `.config` * ci: Modified dockerfile and devcontainer
- Loading branch information
Showing
9 changed files
with
38 additions
and
13 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
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
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,25 @@ | ||
{ | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"mounts": [ | ||
"source=${localWorkspaceFolder},target=/usr/src/app,type=bind,consistency=cached" | ||
], | ||
"workspaceFolder": "/usr/src/app", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-python.debugpy", | ||
"ms-python.black-formatter", | ||
"ms-python.isort", | ||
"ms-python.pylint", | ||
"ms-vscode.test-adapter-converter", | ||
"njpwerner.autodocstring" | ||
] | ||
} | ||
}, | ||
|
||
"forwardPorts": [3000] | ||
} |
File renamed without changes.
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
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
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 |
---|---|---|
|
@@ -62,7 +62,7 @@ pip install git+https://github.com/Deltares/[email protected] | |
1. With [Anaconda (miniforge)](https://conda-forge.org/miniforge/) (our recommendation): | ||
```bash | ||
cd C:\repos\koswat | ||
conda env create -f .config\environment.yml | ||
conda env create -f .devcontainer\environment.yml | ||
conda activate koswat_env | ||
poetry install | ||
``` | ||
|
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
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