Skip to content
This repository was archived by the owner on Oct 29, 2023. It is now read-only.

Commit b7152cc

Browse files
Updated packages and removed unnecessary ones.
- Enable upload route - lock collection name
1 parent a682f31 commit b7152cc

9 files changed

+122
-4385
lines changed

.gitignore

+19-18
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
/apt*.yml
2-
/apt*.yaml
3-
/apt*.json
4-
.repoTest/
5-
thunder-tests
6-
*.deb
7-
*.key
8-
*.pem
9-
*.gpg
10-
storage/
11-
12-
# Ingore node folders
13-
node_modules/
14-
*.tgz
15-
16-
# Typescript
17-
*.d.ts
18-
*.js
1+
/apt*.yml
2+
/apt*.yaml
3+
/apt*.json
4+
.repoTest/
5+
thunder-tests
6+
*.deb
7+
*.key
8+
*.pem
9+
*.gpg
10+
storage/
11+
12+
# Ingore node folders
13+
node_modules/
14+
/*-lock*
15+
*.tgz
16+
17+
# Typescript
18+
*.d.ts
19+
*.js

.npmignore

+33-33
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
# vscode
2-
.devcontainer/
3-
.vscode/
4-
.hintrc
5-
6-
# Typescript
7-
src/*.ts
8-
tsconfig.*
9-
10-
# node and npm
11-
node_modules/
12-
/*.tgz
13-
14-
# Github and Git
15-
.github/
16-
.git*
17-
18-
# Docker
19-
.dockerignore
20-
*docker-compose.yaml
21-
*docker-compose.yml
22-
*Dockerfile*
23-
*dockerfile*
24-
25-
# Project
26-
/apt*.yml
27-
/apt*.yaml
28-
/apt*.json
29-
.repoTest/
30-
thunder-tests
31-
*.deb
32-
*.key
33-
*.pem
1+
# vscode
2+
.devcontainer/
3+
.vscode/
4+
.hintrc
5+
6+
# Typescript
7+
src/*.ts
8+
tsconfig.*
9+
10+
# node and npm
11+
node_modules/
12+
/*.tgz
13+
14+
# Github and Git
15+
.github/
16+
.git*
17+
18+
# Docker
19+
.dockerignore
20+
*docker-compose.yaml
21+
*docker-compose.yml
22+
*Dockerfile*
23+
*dockerfile*
24+
25+
# Project
26+
/apt*.yml
27+
/apt*.yaml
28+
/apt*.json
29+
.repoTest/
30+
thunder-tests
31+
*.deb
32+
*.key
33+
*.pem
3434
*.gpg

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM node:lts
22
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y python3 python3-pip && rm -rf /var/lib/apt/*
33
WORKDIR /app
44
COPY package*.json ./
5-
RUN npm ci
5+
RUN npm install
66
COPY . .
77
RUN npm run build
88

@@ -12,4 +12,4 @@ VOLUME [ "/data" ]
1212
WORKDIR /app
1313
COPY --from=0 /app/ ./
1414
RUN npm link
15-
ENTRYPOINT [ "apt-stream", "server", "--data", "/data" ]
15+
ENTRYPOINT [ "apt-stream", "server", "--data", "/data" ]

example/usr/bin/large.bin

-4.88 MB
Binary file not shown.

0 commit comments

Comments
 (0)