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
In current master, the check for whether the DB is seeded is if (process.env.EAUTH_CLIENT_NAME && process.env.EAUTH_CLIENT_ID && process.env.EAUTH_CLIENT_SECRET && process.env.EAUTH_REDIRECT_URI). Which doesn't seed if even one of the env vars is not specified. Those vars shouldn't be optional, and so users know that they have to specify them. This is especially the case when users are upgrading from the older version of the Docker container.
The text was updated successfully, but these errors were encountered:
In current master, the check for whether the DB is seeded is
if (process.env.EAUTH_CLIENT_NAME && process.env.EAUTH_CLIENT_ID && process.env.EAUTH_CLIENT_SECRET && process.env.EAUTH_REDIRECT_URI)
. Which doesn't seed if even one of the env vars is not specified. Those vars shouldn't be optional, and so users know that they have to specify them. This is especially the case when users are upgrading from the older version of the Docker container.The text was updated successfully, but these errors were encountered: