You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adds support for custom s3 endpoint.
This removes our trickery to use localstack,
and replaces it by a way to set a specific
endpoint via an environment variable:
`QW_S3_REGION`.
Closes#49Closes#1037
Co-authored-by: Adrien Guillo <[email protected]>
3. Start the external services with `make docker-compose-up`
31
-
5. Run `QW_ENV=LOCAL cargo test --all-features`
31
+
5. Run `QW_S3_ENDPOINT=http://localhost:4566 cargo test --all-features`
32
32
33
33
## Running services such as Amazon Kinesis or S3, Kafka, or PostgreSQL locally.
34
34
1. Ensure Docker and Docker Compose are correctly installed on your machine (see above)
@@ -48,8 +48,8 @@ The process is simple and fast. Upon your first pull request, you will be prompt
48
48
## Building binaries
49
49
50
50
Currently, we use [cross](https://github.com/rust-embedded/cross) to build Quickwit binaries for different architectures.
51
-
For this to work, we've had to customize the docker images cross uses. These customizations can be found in docker files located in `./cross-images` folder. To make cross take into account any change on those
52
-
docker files, you will need to build and push the images on dockerhub by running `make cross-images`.
51
+
For this to work, we've had to customize the docker images cross uses. These customizations can be found in docker files located in `./cross-images` folder. To make cross take into account any change on those
52
+
docker files, you will need to build and push the images on dockerhub by running `make cross-images`.
53
53
We also have nightly builds that are pushed to dockerhub. This helps continiously check our binaries are still built even with external dependency update. Successful builds let you accessed the artifacts for the next three days. Release builds always have their artifacts attached to the release.
0 commit comments