create-tosijs-platform-app 1.0.3 ā 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -633,7 +633,12 @@ setup()
|
|
|
633
633
|
}
|
|
634
634
|
console.log('\nā'.repeat(60))
|
|
635
635
|
|
|
636
|
-
console.log('\n
|
|
636
|
+
console.log('\nš To deploy your site:\n')
|
|
637
|
+
console.log(` cd ${projectName}`)
|
|
638
|
+
console.log(` bun initial-deploy`)
|
|
639
|
+
console.log('\nā'.repeat(60))
|
|
640
|
+
|
|
641
|
+
console.log('\nš Detailed Steps:\n')
|
|
637
642
|
|
|
638
643
|
if (hasBlazePlan === false) {
|
|
639
644
|
console.log('ā ļø FIRST: Upgrade to Blaze Plan (REQUIRED)')
|
|
@@ -672,20 +677,19 @@ setup()
|
|
|
672
677
|
console.log(` ⢠ā ļø UPGRADE TO BLAZE PLAN (required for Cloud Functions)`)
|
|
673
678
|
}
|
|
674
679
|
|
|
675
|
-
console.log(
|
|
680
|
+
console.log(
|
|
681
|
+
`\n3. Run initial deployment (builds, deploys, and seeds database):`
|
|
682
|
+
)
|
|
676
683
|
console.log(` cd ${projectName}`)
|
|
677
|
-
console.log(` bun deploy
|
|
684
|
+
console.log(` bun initial-deploy`)
|
|
678
685
|
|
|
679
|
-
console.log(`\n4.
|
|
680
|
-
console.log(`
|
|
686
|
+
console.log(`\n4. Run setup to grant yourself owner access:`)
|
|
687
|
+
console.log(` node setup.js`)
|
|
681
688
|
|
|
682
689
|
console.log(`\n5. Visit your site and sign in with ${adminEmail}`)
|
|
683
690
|
console.log(` https://${firebaseProjectId}.web.app`)
|
|
684
691
|
|
|
685
|
-
console.log(`\n6.
|
|
686
|
-
console.log(` node setup.js`)
|
|
687
|
-
|
|
688
|
-
console.log(`\n7. Start local development:`)
|
|
692
|
+
console.log(`\n6. Start local development:`)
|
|
689
693
|
console.log(` bun start # Uses production Firebase`)
|
|
690
694
|
console.log(` bun start-emulated # Uses local emulators`)
|
|
691
695
|
console.log(` Visit https://localhost:8020`)
|