GSA / Challenge_gov

Other
29 stars 14 forks source link

seeds.exs vs seeds_updated.exs #1022

Open ryanwoldatwork opened 1 year ago

ryanwoldatwork commented 1 year ago

I noticed there are 2 seeds files in the repo. Is there a reason for this?

Is it possible to revert to using the standard seeds.exs as it seems seeds_updated.exs doesn't complete, and is non-standard per Phoenix?

jdonis commented 1 year ago

seeds.exs is used in unit testing to populate the database during the deployment .circleci/config.yml line 114

seeds_updated.exs is to setup and seed the database

ryanwoldatwork commented 1 year ago

Does it make sense to combine the files?