create-message-kit 1.0.12 → 1.0.13
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.
- package/index.js +15 -14
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -232,29 +232,30 @@ This project is generated using the [MessageKit](https://message-kit.vercel.app)
|
|
|
232
232
|
Follow these steps to set up and run the project:
|
|
233
233
|
|
|
234
234
|
1. **Navigate to the project directory:**
|
|
235
|
-
\`\`\`sh
|
|
236
|
-
cd ./${projectName}
|
|
237
|
-
\`\`\`
|
|
238
235
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
\`\`\`
|
|
236
|
+
\`\`\`sh
|
|
237
|
+
cd ./${projectName}
|
|
238
|
+
\`\`\`
|
|
243
239
|
|
|
244
|
-
|
|
245
|
-
\`\`\`sh
|
|
246
|
-
${packageManager === "npm" ? "npm run" : packageManager} dev
|
|
247
|
-
\`\`\`
|
|
240
|
+
2. **Set up your environment variables:**
|
|
248
241
|
|
|
242
|
+
\`\`\`sh
|
|
243
|
+
${envExampleContent}
|
|
244
|
+
\`\`\`
|
|
249
245
|
|
|
250
|
-
|
|
246
|
+
3. **Install dependencies:**
|
|
251
247
|
|
|
252
|
-
|
|
248
|
+
\`\`\`sh
|
|
249
|
+
${packageManager} install
|
|
250
|
+
\`\`\`
|
|
251
|
+
|
|
252
|
+
4. **Run the project:**
|
|
253
253
|
|
|
254
254
|
\`\`\`sh
|
|
255
|
-
${
|
|
255
|
+
${packageManager === "npm" ? "npm run" : packageManager} dev
|
|
256
256
|
\`\`\`
|
|
257
257
|
|
|
258
|
+
5. Enjoy!
|
|
258
259
|
---
|
|
259
260
|
Made with ❤️ by [Ephemera](https://ephemerahq.com)
|
|
260
261
|
`;
|