Skip to content

Commit

Permalink
chore: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
haochengxia committed Apr 1, 2024
1 parent be4b8d5 commit 0da7f5b
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 1 deletion.
Empty file.
Empty file added .github/workflows/test.yml
Empty file.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:16
WORKDIR /app

COPY package.json .
COPY package-lock.json .
RUN npm install

COPY main.js .

ENTRYPOINT ["node"]
CMD ["main.js"]
Empty file.
Empty file.
22 changes: 21 additions & 1 deletion vldb24-reproducibility.md
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
# P-Shapley: How to Reproduce the Experimental Results
# VLDB 2024 Reproducibilty Instructions

## Setup

Prequisite:

- Bash
- [Docker](https://www.docker.com/)

Clone the repository:

```bash
git clone https://github.com/ZJU-DIVER/P-Shapley
cd P-Shapley
```


## Run All

The following script generates ...

0 comments on commit 0da7f5b

Please sign in to comment.