Earlier we added our dev db to the gitignore. This is normally a good idea since you likely don't want outside people to see your app's user account data, but all our data is fake anyway at this time. Having separate databases is causing problems and it would be easier if we all had the same sample set of users for testing.
Objective: Setup the sqlite db so it is no longer a part of the gitignore.
Possibly look into postgresql option.
I am actually going to close this issue. On further inspection, having a unified db for dev isn't a big deal for this project. The important thing is that there is only one production db.
Earlier we added our dev db to the gitignore. This is normally a good idea since you likely don't want outside people to see your app's user account data, but all our data is fake anyway at this time. Having separate databases is causing problems and it would be easier if we all had the same sample set of users for testing.
Objective: Setup the sqlite db so it is no longer a part of the
gitignore
. Possibly look into postgresql option.