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
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
Right now, @truffle/db by default stores everything in the global Truffle config directory (~/.config/truffle or such on Linux, other directories on other platforms). This can cause trouble because @truffle/db remains a bit experimental, and so users might not want to risk collision or breakages and may instead prefer to store their persistent records on a per-project basis.
This issue proposes that we add a user-level config flag to favor per-project persistence over the current default of global persistence.
Maybe this config looks like:
{/* ... */db: {defaultPersistPerProject: true// this is a terrible name}}
The text was updated successfully, but these errors were encountered:
Issue
Right now, @truffle/db by default stores everything in the global Truffle config directory (
~/.config/truffle
or such on Linux, other directories on other platforms). This can cause trouble because @truffle/db remains a bit experimental, and so users might not want to risk collision or breakages and may instead prefer to store their persistent records on a per-project basis.This issue proposes that we add a user-level config flag to favor per-project persistence over the current default of global persistence.
Maybe this config looks like:
The text was updated successfully, but these errors were encountered: