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
Use .env.local if possible while executing cli app.
Currently the grida cli (grida) uses .env to store credentials (pat), in some cases, e.g. vercel apps, uses .env syncing with the remote server, so it is a good idea to store the credentials to .env.local. (if possible, if file already exists)
write: to .env.local if file already present
read: from .env and .env.local, overwrite .local values. (must be some libraries handling this.)
The text was updated successfully, but these errors were encountered:
Use .env.local if possible while executing cli app.
Currently the grida cli (
grida
) uses .env to store credentials (pat), in some cases, e.g. vercel apps, uses .env syncing with the remote server, so it is a good idea to store the credentials to .env.local. (if possible, if file already exists)write
: to .env.local if file already presentread
: from .env and .env.local, overwrite .local values. (must be some libraries handling this.)The text was updated successfully, but these errors were encountered: