You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current every project has an local.env file. But a user cannot have a personal local.env equivalent file that can affect all projects, nor can a computer have a local.env equivalent that would affect every project on there.
Suggested order and names:
/etc/just_local.env or /usr/local/share/just/local.env not sure which is better. The first seems more right
~/.just_local.env or ~/.config/just/local.env or ~/.local/share/just/local.env not sure which is better. The first two seem more right
{project}/local.env
{project}/{project}.env
/etc/just_local_post.env or /usr/local/share/just/local_post.env not sure which is better
~/.just_local_post.env or ~/.config/just/local_post.env or ~/.local/share/just/local_post.env not sure which is better
{project}/local_post.env
The order is intentional, so the user can override the system, and the project can override the user/system, and always gets the last call
The text was updated successfully, but these errors were encountered:
Current every project has an
local.env
file. But a user cannot have a personallocal.env
equivalent file that can affect all projects, nor can a computer have alocal.env
equivalent that would affect every project on there.Suggested order and names:
/etc/just_local.env
or/usr/local/share/just/local.env
not sure which is better. The first seems more right~/.just_local.env
or~/.config/just/local.env
or~/.local/share/just/local.env
not sure which is better. The first two seem more right{project}/local.env
{project}/{project}.env
/etc/just_local_post.env
or/usr/local/share/just/local_post.env
not sure which is better~/.just_local_post.env
or~/.config/just/local_post.env
or~/.local/share/just/local_post.env
not sure which is better{project}/local_post.env
The order is intentional, so the user can override the system, and the project can override the user/system, and always gets the last call
The text was updated successfully, but these errors were encountered: