Add support for per-project settings
See original GitHub issue- I have searched the issues of this repo and believe that this is not a duplicate.
Issue
Sometimes you might want some settings to be set on a per-project basis. For instance, you might want your virtualenv to be created inside the project’s directory only for the current project.
To make this possible, we could add a --local
option to the config
command.
The example use case above would then look like this:
poetry config settings.virtualenvs.in-project true --local
And alternative way would be to make namespace command: config:local
:
poetry config:local settings.virtualenvs.in-project true
Issue Analytics
- State:
- Created 5 years ago
- Reactions:39
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Add support for per-project settings · Issue #618 - GitHub
Can I put in a request for passing config options on the command line, like git -c ? I am writing a tool...
Read more >Project settings | IntelliJ IDEA Documentation - JetBrains
To configure project settings, select IntelliJ IDEA | Preferences on macOS or File | Settings on Windows and Linux from the main menu....
Read more >Project settings - GitLab Docs
On the top bar, select Main menu > Projects > View all projects. Select Explore projects. In the Sort projects dropdown list, select...
Read more >Modify a project's settings in Final Cut Pro - Apple Support
Choose Window > Project Properties (or press Command-J). · Click the Inspector button in the toolbar. The Inspector button in the toolbar.
Read more >Changing General Project Settings - Teamwork Support Center
Select the Settings tab from the project's main navigation menu and go to the General subsection. In the General subsection, you can update:...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Has any consideration been given to storing some of these local settings in
pyproject.toml
? I would like every user of a given project to have a virtual environment at./venv/
so that other tools/scripts/editors can depend on it.This is implemented in #1272 and will be available in the next
1.0.0
release