Skip to content

Commit

Permalink
Merge branch 'main' into rob/finishing-vec-fs-impl
Browse files Browse the repository at this point in the history
  • Loading branch information
robkorn committed Jan 26, 2024
2 parents 152996d + 10cb5ee commit a16f2a1
Show file tree
Hide file tree
Showing 118 changed files with 5,570 additions and 6,680 deletions.
6 changes: 3 additions & 3 deletions .github/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use a Rust base image
FROM rust:bookworm as builder
RUN apt-get update && apt-get install -y libclang-dev cmake
RUN apt-get update && apt-get install -y libclang-dev cmake libssl-dev

# Install nvm, npm and node
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
Expand All @@ -16,7 +16,7 @@ RUN source $NVM_DIR/nvm.sh \

ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules
ENV PATH $NVM_DIR/versions/node/$NODE_VERSION/bin:$PATH
RUN node -v
RUN node -v

# Create a new directory for your app
WORKDIR /app
Expand All @@ -27,7 +27,7 @@ COPY . .

# Build the dependencies (cached)

RUN cargo clean
RUN cargo clean
RUN rustup component add rustfmt
RUN CARGO_BUILD_RERUN_IF_CHANGED=1 cargo build

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ db/.secret
./storage/*
vector_fs_db
storage
.vscode/*
180 changes: 0 additions & 180 deletions .vscode/launch.json

This file was deleted.

5 changes: 0 additions & 5 deletions .vscode/settings.json

This file was deleted.

Loading

0 comments on commit a16f2a1

Please sign in to comment.