@enfyra/create-app 0.1.31 → 0.1.32

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.
Files changed (2) hide show
  1. package/README.md +12 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -45,6 +45,7 @@ create-app my-app
45
45
  ✅ **Enfyra SDK** pre-configured
46
46
  ✅ **TypeScript** support
47
47
  ✅ **Tailwind CSS** styling
48
+ ✅ **Database support** - MongoDB, PostgreSQL, MySQL
48
49
  ✅ **Environment** variables setup
49
50
  ✅ **Dependencies** installed automatically
50
51
 
@@ -62,14 +63,24 @@ npx @enfyra/create-app my-project
62
63
 
63
64
  ### Interactive setup
64
65
  The CLI will guide you through:
65
- - Package manager selection
66
+ - Package manager selection (npm, yarn, pnpm)
67
+ - Database type selection (MongoDB, PostgreSQL, MySQL)
66
68
  - API endpoint configuration
67
69
  - Development port setup
68
70
 
71
+ ### Database Support
72
+ Choose from multiple database options during setup:
73
+ - 🍃 **MongoDB** - NoSQL document database
74
+ - 🐘 **PostgreSQL** - Powerful relational database
75
+ - 🐬 **MySQL** - Popular relational database
76
+
77
+ The selected database type will be automatically configured in your `.env` file.
78
+
69
79
  ### Environment Variables
70
80
  After project creation, you can modify the `.env` file at any time to configure:
71
81
  - API endpoints
72
82
  - Port
83
+ - Database type
73
84
 
74
85
  The `.env` file is automatically created and can be customized for your specific needs.
75
86
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enfyra/create-app",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
4
4
  "description": "Create Enfyra frontend applications with ease",
5
5
  "main": "index.js",
6
6
  "bin": {