Skip to content

Commit 3e3eae6

Browse files
authored
Remove image references for old materials (#31)
cleanup
1 parent eb09692 commit 3e3eae6

File tree

5 files changed

+8
-36
lines changed

5 files changed

+8
-36
lines changed

Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,4 @@ COPY ./backend/ .
4242
# add static react files to fastapi image
4343
COPY --from=ReactImage /app/frontend/build /app/backend/arxivsearch/templates/build
4444

45-
LABEL org.opencontainers.image.source https://github.com/RedisVentures/redis-arxiv-search
46-
4745
CMD ["poetry", "run", "start-app"]

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.PHONY: build
2+
3+
build:
4+
docker compose -f docker-local-redis.yml up

README.md

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
<div align="center">
3-
<a href="https://github.com/RedisVentures/redis-arXiv-search"><img src="https://redis.io/wp-content/uploads/2024/04/Logotype.svg?raw=true" width="30%"><img></a>
3+
<a href="https://github.com/redis-developer/redis-arxiv-search"><img src="https://redis.io/wp-content/uploads/2024/04/Logotype.svg?raw=true" width="30%"><img></a>
44
<br />
55
<br />
66
<div display="inline-block">
77
<a href="https://docsearch.redisvl.com"><b>Hosted Demo</b></a>&nbsp;&nbsp;&nbsp;
8-
<a href="https://github.com/RedisVentures/redis-arXiv-search"><b>Code</b></a>&nbsp;&nbsp;&nbsp;
8+
<a href="https://github.com/redis-developer/redis-arxiv-search"><b>Code</b></a>&nbsp;&nbsp;&nbsp;
99
<a href="https://github.com/redis-developer/redis-ai-resources"><b>More AI Recipes</b></a>&nbsp;&nbsp;&nbsp;
1010
<a href="https://datasciencedojo.com/blog/ai-powered-document-search/"><b>Blog Post</b></a>&nbsp;&nbsp;&nbsp;
1111
<a href="https://redis.io/docs/interact/search-and-query/advanced-concepts/vectors/"><b>Redis Vector Search Documentation</b></a>&nbsp;&nbsp;&nbsp;
@@ -110,31 +110,13 @@ Embeddings represent the semantic properies of the raw text and enable vector si
110110
```
111111
- Add your `OPENAI_API_KEY` to the `.env` file. **Need one?** [Get an API key](https://platform.openai.com)
112112
- Add you `COHERE_API_KEY` to the `.env` file. **Need one?** [Get an API key](https://cohere.ai)
113-
4. Decide which Redis you plan to use, choose one of the methods below
114-
- **[Redis Stack](#redis-stack-docker)** runs Redis as a local docker container.
115-
- **[Redis Cloud](#redis-cloud)** will manage a Redis database on your behalf in the cloud.
116113

117-
### Redis Stack Docker (Local)
118-
Using Redis Stack locally doesn't require any additional steps. However, it will consume more resources on your machine and have performance limitations.
119-
120-
Use the provided `docker-compose` file for running the application locally:
114+
### Redis Stack Docker (Local) with make
121115
```bash
122-
$ docker compose -f docker-local-redis.yml up
116+
make build
123117
```
124118

125119

126-
### Redis Cloud
127-
128-
1. [Get a FREE Redis Cloud Database](https://redis.com/try-free/). Make sure to include the Search module.
129-
130-
2. Add the `REDIS_HOST`, `REDIS_PASSWORD`, and `REDIS_PORT` environment variables to your `.env` file.
131-
132-
3. Run the App:
133-
```bash
134-
$ docker compose -f docker-cloud-redis.yml up
135-
```
136-
137-
138120
## Customizing (optional)
139121

140122
### Run local redis with Docker

build.sh

Lines changed: 0 additions & 1 deletion
This file was deleted.

docker-cloud-redis.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)