Compare commits

...

7 Commits

Author SHA1 Message Date
sweep-ai[bot] 53836b56bd Merge main into sweep/fix-npm-run-start 2023-11-15 23:56:49 +00:00
sweep-ai[bot] d75f62a244 Merge main into sweep/fix-npm-run-start 2023-11-15 04:55:24 +00:00
sweep-ai[bot] 3e75735ad2 Merge main into sweep/fix-npm-run-start 2023-11-15 04:49:34 +00:00
sweep-ai[bot] 13c13cf566 Merge main into sweep/fix-npm-run-start 2023-11-15 01:24:46 +00:00
sweep-ai[bot] 0772ed3086 Merge main into sweep/fix-npm-run-start 2023-11-15 00:21:39 +00:00
sweep-ai[bot] d78c66e953 Merge main into sweep/fix-npm-run-start 2023-11-15 00:18:16 +00:00
sweep-ai[bot] 3203aadf21 feat: Updated packages/create-llama/README.md 2023-11-15 00:17:36 +00:00
+23
View File
@@ -122,5 +122,28 @@ Options:
- [TS/JS docs](https://ts.llamaindex.ai/)
- [Python docs](https://docs.llamaindex.ai/en/stable/)
## Running the Application
After creating your new LlamaIndex application, you need to install all the necessary dependencies and build the application before you can start it. Follow these steps:
1. Install the dependencies:
```bash
npm install
```
2. Create a production build of the application:
```bash
npm run build
```
3. Start the application:
```bash
npm run start
```
Please note that `npm run start` is meant to start a production server and requires a build to be created first.
Inspired by and adapted from [create-next-app](https://github.com/vercel/next.js/tree/canary/packages/create-next-app)