-
Notifications
You must be signed in to change notification settings - Fork 149
Question - Pipfile usage: From dev to production #91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
"default" is your common set of dependencies, used for both production and development. |
@kennethreitz Thanks, that still leaves a question open (unless I missed something): What about the notion of editable requirements? I'll take the example
If I use this So, is there any way to reuse this file in both my dev and prod environment? My guts is telling me "no" here, but whenever I read about |
|
@kennethreitz Ah! Yes! Thanks! That would actually be a good addition to the readme, IMO. As a side note: last time I tried in |
I've been thinking about the usage of
Pipfile
, and this question kept bugging me:Is the
Pipfile
for a project meant to be the same file used both for the dev and prod environments (and any other environment, like QA setups and such, if it applies)?If yes, how do you do so?
In development, users will usually install one (or many) packages in editable mode, which doesn't match how it should be installed when in production.
The text was updated successfully, but these errors were encountered: