Skip to content

Commit 3b8ce52

Browse files
authored
remove old repo references (#25)
* remove old repo references
1 parent 025ed28 commit 3b8ce52

File tree

7 files changed

+11
-37
lines changed

7 files changed

+11
-37
lines changed
File renamed without changes.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ helpful contributions that mean less work for you.
1616

1717
## Your First Contribution
1818

19-
Unsure where to begin contributing? You can start by looking through some of our issues [listed here](https://github.com/RedisVentures/redis-vector-search/issues).
19+
Unsure where to begin contributing? You can start by looking through some of our issues [listed here](https://github.com/redis-developer/redis-product-search).
2020

2121
## Getting Started
2222

Dockerfile

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

44-
LABEL org.opencontainers.image.source https://github.com/RedisVentures/redis-product-search
45-
4644
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: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<br />
55
<br />
66
<div display="inline-block">
7-
<a href="https://ecommerce.redisventures.com"><b>Hosted Demo</b></a>&nbsp;&nbsp;&nbsp;
7+
<a href="https://ecommerce.redisvl.com/"><b>Hosted Demo</b></a>&nbsp;&nbsp;&nbsp;
88
<a href="https://github.com/redis-developer/redis-product-search"><b>Code</b></a>&nbsp;&nbsp;&nbsp;
99
<a href="https://redis.io/docs/stack/search/reference/vectors/"><b>Redis VSS Documentation</b></a>&nbsp;&nbsp;&nbsp;
1010
</div>
@@ -97,37 +97,21 @@ A formatted version is available for use with this demo at:
9797
## Running the App with docker-compose
9898
Before running the app, install [Docker Desktop](https://www.docker.com/products/docker-desktop/).
9999

100-
#### Using Redis Cloud
101-
102-
1. [Get your Redis Cloud Database](https://app.redislabs.com/) (if needed).
103-
104-
2. `cp template.env .env` and update with cloud values
100+
1. Copy .env file
105101

106102
```bash
107-
REDIS_HOST=your-redis-host
108-
REDIS_PORT=your-redis-port
109-
REDIS_PASSOWRD=your-redis-password
103+
cp .env.template .env
110104
```
111105

112-
3. Run the App:
113-
```bash
114-
$ docker compose -f docker-cloud-redis.yml up
115-
```
116-
117-
> The benefit of this approach is that the db will persist beyond application runs. So you can make updates and re run the app without having to provision the dataset or create another search index.
118-
119-
#### Running the app locally using docker
120-
121-
1. `cp template.env .env`
106+
2. Run docker containers with `make`
122107

123-
2. Run compose command
124108
```bash
125-
$ docker compose -f docker-local-redis.yml up
109+
make build
126110
```
127111

128112
Note: you can add `--build` and `--force-recreate` if caching old images.
129113

130-
## Running without docker-compose
114+
## Running local without docker-compose
131115

132116
### Run frontend
133117

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)