Skip to content

Commit

Permalink
Merge pull request #186 from NXY666/patch-1
Browse files Browse the repository at this point in the history
fix readme typo
  • Loading branch information
sugarforever authored Apr 1, 2024
2 parents 2ab6c51 + 65e8f83 commit 2dc67a3
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,41 +58,41 @@ If you'd like to run with the latest code base and apply changes as needed, you

3.1 Copy the `.env.example` file to `.env` file:

```bash
cp .env.example .env
```
```bash
cp .env.example .env
```

3.2 Make sure to install the dependencies:

```bash
# npm
npm install
```bash
# npm
npm install
# pnpm
pnpm install
# pnpm
pnpm install
# yarn
yarn install
# yarn
yarn install
# bun
bun install
```
# bun
bun install
```

3.3 Run a migration to create your database tables with Prisma Migrate

```bash
# npm
npm run prisma-migrate
```bash
# npm
npm run prisma-migrate
# pnpm
pnpm prisma-migrate
# pnpm
pnpm prisma-migrate
# yarn
yarn prisma-migrate
# yarn
yarn prisma-migrate
# bun
bun run prisma-migrate
```
# bun
bun run prisma-migrate
```

4. Launch Development Server

Expand Down Expand Up @@ -140,10 +140,10 @@ We recommand you download `nomic-embed-text` model for embedding purpose.

You can do so on Models page http://localhost:3000/models, or via CLI as below if you are using Docker.

```
```shell
# In the folder of docker-compose.yaml
docker compose exec ollama ollama pull nomic-embed-text:latest
$ docker compose exec ollama ollama pull nomic-embed-text:latest
```

**OpenAI Embedding Model**
Expand Down

0 comments on commit 2dc67a3

Please sign in to comment.