Skip to content

Commit 6ce74b7

Browse files
committed
chore: wip
1 parent b733627 commit 6ce74b7

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

storage/framework/cloud/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Please Note
2+
3+
Copy the root .env into this directory.

storage/framework/core/buddy/src/commands/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ async function configureDomain(domain: string, options: DeployOptions, startTime
6969
// TODO: add check for whether the local APP_ENV is getting deployed, if so, ask if the user meant to deploy `dev`
7070
if (domain.includes('localhost')) {
7171
log.info('You are deploying to a local environment.')
72-
log.info('Please set your .env or ./config/app.ts properly.')
72+
log.info('Please set your .env or ./config/app.ts properly. The domain we are deploying cannot be a `localhost` domain.')
7373
console.log('')
7474
log.info('Alternatively, specify a domain to deploy via the `--domain` flag.')
7575
console.log('')

storage/framework/core/config/src/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { StacksOptions } from '@stacksjs/types'
22
import defaults from './defaults'
33
import overrides from './overrides'
44

5+
// merged defaults and overrides
56
export const config: StacksOptions = {
67
...defaults,
78
...overrides,

0 commit comments

Comments
 (0)