From d75008a34f995b2891eb3930a0c165c399d18d74 Mon Sep 17 00:00:00 2001 From: "Jason A. Ribeiro" <90712+jrib@users.noreply.github.com> Date: Sat, 27 Aug 2022 17:28:37 -0400 Subject: [PATCH] Provide full path for example sqlite path (#217) The Dockerfile currently creates a directory at /var/local/shynet/db/. The `DB_NAME` in the example file caused migrations to fail as a result. --- TEMPLATE.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TEMPLATE.env b/TEMPLATE.env index 7300683..aead45c 100644 --- a/TEMPLATE.env +++ b/TEMPLATE.env @@ -11,7 +11,7 @@ DB_PORT=5432 # Database settings (SQLite) - comment PostgreSQL settings # SQLITE=True -# DB_NAME=/var/local/shynet/db +# DB_NAME=/var/local/shynet/db/db.sqlite3 # Email settings (optional) EMAIL_HOST_USER=example