Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Svelte Package and NPM in README #51

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Expand Up @@ -114,12 +114,18 @@ To install Devika, follow these steps:
```
python devika.py
```
6. Compile and run the UI server:
6. Compile and run the UI server:</br>
Install the Svelte package required
use command `npm install @sveltejs/vite-plugin-svelte` to install it
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sveltejs/vite-plugin-svelte is already present in ui/package.json
bun install should install it. Am I missing something?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It didn’t installed for me i used pip install -r requirements file

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You'd have to do bun install or npm install
@sveltejs/vite-plugin-svelte is a package in npm not pip

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But on Readme it was not mentioned now maybe its updated

```
cd ui/
bun run dev
```
7. Access the Devika web interface by opening a browser and navigating to `http://127.0.0.1:3000`.
or use npm
```
nmp run dev
haseeb-heaven marked this conversation as resolved.
Show resolved Hide resolved
```
8. Access the Devika web interface by opening a browser and navigating to `http://127.0.0.1:3000`.

## Getting Started

Expand Down