Skip to content

Commit 5b0593f

Browse files
committed
fix(server): use secret env var by default
1 parent db9db05 commit 5b0593f

File tree

1 file changed

+1
-1
lines changed
  • app/templates/server/config/environment

1 file changed

+1
-1
lines changed

app/templates/server/config/environment/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var all = {
1818
}<% } %><% if (filters.auth) { %>,
1919

2020
secrets: {
21-
session: 'zavatta' || process.env.SESSION_SECRET
21+
session: process.env.SESSION_SECRET || 'secretKey'
2222
}<% } %>
2323
};
2424

0 commit comments

Comments
 (0)