Draft: [IMP] t2d: Add support for vscode with devcontainer.json#169
Open
antonag32 wants to merge 1 commit intoVauxoo:mainfrom
Open
Draft: [IMP] t2d: Add support for vscode with devcontainer.json#169antonag32 wants to merge 1 commit intoVauxoo:mainfrom
antonag32 wants to merge 1 commit intoVauxoo:mainfrom
Conversation
67af4cf to
47d822c
Compare
47d822c to
8203f99
Compare
Codecov ReportBase: 83.33% // Head: 83.47% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #169 +/- ##
==========================================
+ Coverage 83.33% 83.47% +0.14%
==========================================
Files 7 7
Lines 588 593 +5
Branches 101 102 +1
==========================================
+ Hits 490 495 +5
Misses 69 69
Partials 29 29
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related to #158
This PR adds supports for devcontainers, a really cool option that integrates with vscode and automatically creates development containers.
If everything goes well, when you open a folder with a
.devcontainer.jsonfile vscode automatically gives you the option to reopen in a remote container. With the proposeddevcontaner.jsonthis will open a vscode instance with:pdb.set_trace()🤩 )ir.access.model.csvrecords.More extensions can easily be added, I only use/know of those three for Odoo development.
Odoo source code is also added to
extraPathswhich basically means you canCtrl + Clickon something likefrom odoo import modelsand have a new tab with the source code on it. This also means that function arguments to stuff likesearchare suggested now based on Odoo's source code.I am not very familiar with t2d source code so reviews are welcome since I am not sure I am placing the new feature in the correct place.