Use a new context for the next step, because the current one of the job is already stopped

This commit is contained in:
Achim Rohn
2026-04-05 11:27:38 +02:00
parent 6312033fad
commit 5bab8de040
5 changed files with 80 additions and 30 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
.env
.idea/
tmp/
sqlite3.db
sqlite3.db*
+3 -2
View File
@@ -2,10 +2,11 @@ package env
import (
"fmt"
. "git.gorlug.de/code/ersteller"
"os"
"path/filepath"
. "git.gorlug.de/code/ersteller"
"github.com/joho/godotenv"
)
@@ -133,7 +134,7 @@ func GenerateEnvFile(rootPath string, overwrite bool) error {
// Define default values and comments for specific keys
defaults := map[string]string{
EnvKeyDatabaseURL: "\"sqlite3.db?_fk=1\"",
EnvKeyDatabaseURL: "\"sqlite3.db?_fk=1&_journal_mode=WAL\"",
EnvKeyBaseURL: "\"http://localhost:8090\"",
EnvKeyIsLocal: "true",
EnvKeyIsDev: "true",