Skip to content

Commit 8674e0e

Browse files
committed
chore: wip
1 parent 6c143d2 commit 8674e0e

File tree

5 files changed

+380
-39
lines changed

5 files changed

+380
-39
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ MAIL_USERNAME=null
3030
MAIL_PASSWORD=null
3131
MAIL_ENCRYPTION=null
3232
MAIL_FROM_NAME="${APP_NAME}"
33-
MAIL_FROM_ADDRESS="no-reply@stacksjs.org"
33+
MAIL_FROM_ADDRESS="no-reply@stacksjs.com"
3434

3535
SEARCH_ENGINE_DRIVER=meilisearch
3636
MEILISEARCH_HOST=http://127.0.0.1:7700

bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
## To learn more, visit https://stacksjs.org/docs/guide/bootstrap
3+
## To learn more, visit https://stacksjs.com/docs/guide/bootstrap
44

55
if [ -n "$1" ]; then
66
# Check if the directory exists

config/email.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ const envVars = typeof Bun !== 'undefined' ? Bun.env : process.env
1313
export default {
1414
from: {
1515
name: envVars.MAIL_FROM_NAME || 'Stacks',
16-
address: envVars.MAIL_FROM_ADDRESS || 'no-reply@stacksjs.org',
16+
address: envVars.MAIL_FROM_ADDRESS || 'no-reply@stacksjs.com',
1717
},
1818

19-
mailboxes: ['chris@stacksjs.org', 'blake@stacksjs.org', 'glenn@stacksjs.org'],
19+
mailboxes: ['chris@stacksjs.com', 'blake@stacksjs.com', 'glenn@stacksjs.com'],
2020

21-
url: envVars.APP_URL || 'http://localhost:3000',
21+
url: envVars.APP_URL || 'https://stacksjs.com',
2222
charset: 'UTF-8',
2323

2424
server: {

0 commit comments

Comments
 (0)