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šŸ“‹ Next Steps:\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(`\n3. Deploy Cloud Functions:`)
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-functions`)
684
+ console.log(` bun initial-deploy`)
678
685
 
679
- console.log(`\n4. Deploy Hosting:`)
680
- console.log(` bun deploy-hosting`)
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. Run setup to grant admin access:`)
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`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-tosijs-platform-app",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Create a full-stack web app with tosijs (front-end) and Firebase (back-end)",
5
5
  "type": "module",
6
6
  "bin": {